electron-ipc-module
    Preparing search index...

    Interface AnalyzedIpcModule

    The full analysis result for one *.ipc.ts module.

    interface AnalyzedIpcModule {
        channels: ChannelInfo[];
        emittedEvents: EmittedEventInfo[];
        eventPrefix?: string;
        fileName: string;
        name: string;
        prefix: string;
        warnings: string[];
    }
    Index
    channels: ChannelInfo[]
    emittedEvents: EmittedEventInfo[]
    eventPrefix?: string

    Optional physical prefix applied to emitted renderer event channels.

    fileName: string

    Absolute POSIX path of the source file.

    name: string

    Module name derived from the file name (without .ipc.ts).

    prefix: string

    Channel prefix passed to defineIpcModule.

    warnings: string[]

    Non-fatal issues found while analyzing (e.g. spreads, duplicate events).