mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-12 18:56:31 +08:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
![]() |
export interface CordovaPlugin {
|
||
|
id: string;
|
||
|
className: string;
|
||
|
plugin: string;
|
||
|
pluginRef: string;
|
||
|
promise?: any;
|
||
|
}
|
||
|
export declare var PluginConfig: CordovaPlugin[];
|