awesome-cordova-plugins/scripts/templates/wrap-min.tmpl
2017-05-13 22:53:04 -04:00

31 lines
524 B
Cheetah

import { Plugin, IonicNativePlugin } from '@ionic-native/core';
import { Injectable } from '@angular/core';
/**
* @name {{ Plugin_Name }}
* @description
*
* @usage
* ```
* import { {{ PluginName }} } from '@ionic-native/{{ plugin-name }}';
*
*
* constructor(private {{ pluginName }}: {{ PluginName }}) { }
*
* ...
*
*
* ```
*/
@Plugin({
pluginName: '{{ PluginName }}',
plugin: '',
pluginRef: '',
repo: '',
platforms: []
})
@Injectable()
export class {{ PluginName }} extends IonicNativePlugin {
}