RenaiApp/src/declarations/electron.d.ts

9 lines
195 B
TypeScript
Raw Normal View History

2019-06-30 01:18:21 +02:00
import WebContents = Electron.WebContents;
declare type IpcEvent = {
frameId: number;
preventDefault: () => void;
reply: (channel: string, ...args: any) => void;
sender: WebContents;
};