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

    Interface IEventLaneTopology<TBindings, TProfiles>

    Event-lane topology declaration used by remote/event-lane integrations.

    interface IEventLaneTopology<
        TBindings extends
            readonly IEventLaneTopologyBinding[] = readonly IEventLaneTopologyBinding[],
        TProfiles extends
            Record<string, IEventLaneTopologyProfile<TBindings[number]["lane"]>> = Record<
            string,
            IEventLaneTopologyProfile<TBindings[number]["lane"]>,
        >,
    > {
        bindings: TBindings;
        profiles: TProfiles;
        relaySourcePrefix?: string;
    }

    Type Parameters

    Index

    Properties

    bindings: TBindings
    profiles: TProfiles
    relaySourcePrefix?: string