mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +08:00
2f706deb26
* style(TEMPLATE): fix angular style * docs(TEMPLATE): fix angular style docs template
20 lines
241 B
Plaintext
20 lines
241 B
Plaintext
import { Plugin } from './plugin';
|
|
/**
|
|
* @name PluginName
|
|
* @description
|
|
*
|
|
* @usage
|
|
* ```
|
|
* import { PluginName } from 'ionic-native';
|
|
*
|
|
*
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
plugin: '',
|
|
pluginRef: '',
|
|
repo: ''
|
|
})
|
|
export class PluginName {
|
|
}
|