electron-direct-ipc - v2.2.3
    Preparing search index...

    Type Alias DirectIpcEventMap

    Base event map for DirectIpc internal events These events do NOT include sender as first argument

    type DirectIpcEventMap = {
        "map-updated": (map: DirectIpcTarget[]) => void;
        message: (sender: DirectIpcTarget, message: unknown) => void;
        "message-port-added": (target: DirectIpcTarget) => void;
        "registration-complete": () => void;
        "registration-failed": (error: Error) => void;
        "target-added": (target: DirectIpcTarget) => void;
        "target-removed": (target: DirectIpcTarget) => void;
    }
    Index

    Properties

    "map-updated": (map: DirectIpcTarget[]) => void
    message: (sender: DirectIpcTarget, message: unknown) => void
    "message-port-added": (target: DirectIpcTarget) => void
    "registration-complete": () => void
    "registration-failed": (error: Error) => void
    "target-added": (target: DirectIpcTarget) => void
    "target-removed": (target: DirectIpcTarget) => void