UNPKG

427 BTypeScriptView Raw
1import type { CapacitorGlobal } from './definitions';
2import type { CapacitorInstance, WindowCapacitor } from './definitions-internal';
3export interface RegisteredPlugin {
4 readonly name: string;
5 readonly proxy: any;
6 readonly platforms: ReadonlySet<string>;
7}
8export declare const createCapacitor: (win: WindowCapacitor) => CapacitorInstance;
9export declare const initCapacitorGlobal: (win: any) => CapacitorGlobal;