RenaiApp/src/declarations/electron.d.ts

9 lines
195 B
TypeScript

import WebContents = Electron.WebContents;
declare type IpcEvent = {
frameId: number;
preventDefault: () => void;
reply: (channel: string, ...args: any) => void;
sender: WebContents;
};