mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 02:53:03 +08:00
20 lines
237 B
Plaintext
20 lines
237 B
Plaintext
|
import {Plugin} from './plugin';
|
||
|
/**
|
||
|
* @name PluginName
|
||
|
* @description
|
||
|
*
|
||
|
* @usage
|
||
|
* ```
|
||
|
* import {PluginName} from 'ionic-native';
|
||
|
*
|
||
|
*
|
||
|
* ```
|
||
|
*/
|
||
|
@Plugin({
|
||
|
plugin: '',
|
||
|
pluginRef: '',
|
||
|
repo: ''
|
||
|
})
|
||
|
export class PluginName {
|
||
|
}
|