From fcfcdc8136ef1de60ad4229fabd258c47f7d7568 Mon Sep 17 00:00:00 2001 From: Oliver Yasuna Date: Fri, 30 Aug 2024 21:55:39 -0400 Subject: [PATCH] Added specific properties to `PluginImplementations`m --- core/src/definitions.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/definitions.ts b/core/src/definitions.ts index 1471becab..aa4ff1ea1 100644 --- a/core/src/definitions.ts +++ b/core/src/definitions.ts @@ -110,6 +110,9 @@ export type RegisterPlugin = ( * implementation for the respective platform. */ export type PluginImplementations = { + android?: (() => Promise) | any; + ios?: (() => Promise) | any; + web?: (() => Promise) | any; [platform: string]: (() => Promise) | any; };