electron-ipc-module
    Preparing search index...

    Interface ChannelInfo

    A single analyzed channel of an IPC module.

    interface ChannelInfo {
        argsType: string | null;
        isHandler: boolean;
        key: string;
        returnType: string;
    }
    Index
    argsType: string | null

    Serialized argument tuple type, or null when there are no args.

    isHandler: boolean

    true for handle/handleOnce, false for listen/listenOnce.

    key: string

    Channel key (before prefixing), e.g. "get-all".

    returnType: string

    Serialized (awaited) return type; "any" for listeners.