WebViewWorker.d.ts 206 Bytes Raw Blame History Permalink 1 2 3 4 5 6 export declare class WebViewWorker { private sendToMain; constructor(sendToMain: (message: string) => void); onMainMessage(message: string): Promise<void>; send(data: any): Promise<void>; }