@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface IEventLaneDefinition

    Definition contract for an event lane.

    interface IEventLaneDefinition {
        "[symbolFilePath]"?: string;
        applyTo?:
            | readonly (string | IEventDefinition<any>)[]
            | ((event: IEventDefinition<any>) => boolean);
        asyncContexts?: readonly (string | IAsyncContext<unknown>)[];
        id: string;
        meta?: IEventLaneMeta;
    }

    Hierarchy (View Summary)

    Index

    Properties

    "[symbolFilePath]"?: string
    applyTo?:
        | readonly (string | IEventDefinition<any>)[]
        | ((event: IEventDefinition<any>) => boolean)
    asyncContexts?: readonly (string | IAsyncContext<unknown>)[]

    Async contexts allowed to cross this lane during relay. Defaults to an empty allowlist, meaning no async contexts are forwarded.

    id: string