UNPKG

833 BTypeScriptView Raw
1export declare class IonicNativePlugin {
2 static pluginName: string;
3 static pluginRef: string;
4 static plugin: string;
5 static repo: string;
6 static platforms: string[];
7 static install: string;
8 /**
9 * Returns a boolean that indicates whether the plugin is installed
10 * @return {boolean}
11 */
12 static installed(): boolean;
13 /**
14 * Returns the original plugin object
15 */
16 static getPlugin(): any;
17 /**
18 * Returns the plugin's name
19 */
20 static getPluginName(): string;
21 /**
22 * Returns the plugin's reference
23 */
24 static getPluginRef(): string;
25 /**
26 * Returns the plugin's install name
27 */
28 static getPluginInstallName(): string;
29 /**
30 * Returns the plugin's supported platforms
31 */
32 static getSupportedPlatforms(): string[];
33}