RenaiApp/src/declarations/electron.d.ts

9 lines
198 B
TypeScript

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