electron-ipc-module
    Preparing search index...

    Interface IpcUncloneable<TPayload>

    Returned by Serializable in place of a payload that cannot cross IPC.

    It is deliberately not assignable to anything useful: a channel declared with one is rejected by defineIpcModule, and a renderer cannot read it.

    interface IpcUncloneable<TPayload> {
        __ipcUncloneable: "This payload cannot cross the Electron IPC boundary: structured clone rejects the whole value";
        payload: TPayload;
    }

    Type Parameters

    • TPayload
    Index
    __ipcUncloneable: "This payload cannot cross the Electron IPC boundary: structured clone rejects the whole value"
    payload: TPayload