mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-04-03 05:11:55 +08:00
55 lines
867 B
TypeScript
55 lines
867 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;
|
|
}
|
|
|
|
/**
|
|
* Returns the plugin's supported platforms
|
|
*/
|
|
static getSupportedPlatforms(): string[] {
|
|
return;
|
|
}
|
|
}
|