mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 02:53:03 +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[];
|