mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +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 {
|
|
}
|