electron-ipc-module
    Preparing search index...

    Type Alias TypedWebContents<TEmit>

    TypedWebContents: Omit<WebContents, "send"> & {
        send<TKey extends string>(
            channel: TKey,
            ...args: IpcEventArgs<TEmit, TKey>,
        ): void;
    }

    WebContents whose send is typed against the module's event map.

    Type Parameters