forked from github/awesome-cordova-plugins
42 lines
725 B
TypeScript
42 lines
725 B
TypeScript
|
|
export class IonicNativePlugin {
|
||
|
|
|
||
|
|
static pluginName: string;
|
||
|
|
|
||
|
|
static pluginRef: string;
|
||
|
|
|
||
|
|
static plugin: string;
|
||
|
|
|
||
|
|
static repo: string;
|
||
|
|
|
||
|
|
static platforms: string[];
|
||
|
|
|
||
|
|
static install: string;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns a boolean that indicates whether the plugin is installed
|
||
|
|
* @return {boolean}
|
||
|
|
*/
|
||
|
|
static installed(): boolean { return false; }
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the original plugin object
|
||
|
|
*/
|
||
|
|
static getPlugin(): any {}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the plugin's name
|
||
|
|
*/
|
||
|
|
static getPluginName(): string { return; }
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the plugin's reference
|
||
|
|
*/
|
||
|
|
static getPluginRef(): string { return; }
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the plugin's install name
|
||
|
|
*/
|
||
|
|
static getPluginInstallName(): string { return; }
|
||
|
|
|
||
|
|
}
|