chore(): fix plugin create command and templtes

This commit is contained in:
Ibby Hadeed
2017-03-25 21:48:45 -04:00
parent 1eebea9df5
commit c52bb832b4
3 changed files with 28 additions and 16 deletions
+8 -3
View File
@@ -7,18 +7,23 @@ import { Injectable } from '@angular/core';
*
* @usage
* ```
* import { PluginName } from 'ionic-native';
* import { $PluginName } from 'ionic-native';
*
*
* constructor(private $pluginName: $PluginName) { }
*
* ...
*
*
* ```
*/
@Plugin({
pluginName: 'PluginName',
pluginName: '$PluginName',
plugin: '',
pluginRef: '',
repo: ''
})
@Injectable()
export class PluginName {
export class $PluginName {
}