diff --git a/core/src/definitions.ts b/core/src/definitions.ts index a8259607c..00d4a9c91 100644 --- a/core/src/definitions.ts +++ b/core/src/definitions.ts @@ -68,6 +68,9 @@ export type RegisterPlugin = (pluginName: string, implementations?: Readonly< * implementation for the respective platform. */ export type PluginImplementations = { + android?: (() => Promise) | any; + ios?: (() => Promise) | any; + web?: (() => Promise) | any; [platform: string]: (() => Promise) | any; };