export type CustomParameter = { [key: string]: string; }; export type Parameters = { iosActivationRules?: { [key: string]: number | boolean | string; } | string; iosShareExtensionName?: string; iosAppGroupIdentifier?: string; iosShareExtensionBundleIdentifier?: string; iosHideView?: boolean; androidMainActivityAttributes?: CustomParameter; androidIntentFilters?: ("text/*" | "image/*" | "video/*" | "*/*")[]; androidMultiIntentFilters?: ("image/*" | "video/*" | "*/*")[]; disableExperimental?: boolean; preprocessorInjectJS?: string; disableAndroid?: boolean; disableIOS?: boolean; };