12345678910111213 |
- export declare type Notifier = (msg: string, status?: string | number, resOrErr?: any) => void;
- export declare type SyncCookiesOptions = {
- domain?: string;
- expires?: number;
- };
- declare global {
- interface Window {
- app_event: any;
- appBridge: any;
- WebViewJavascriptBridge: any;
- WVJBCallbacks: any[];
- }
- }
|