transferum
    Preparing search index...

    Type Alias BridgeSelectorConfig<TMap>

    Configuration for BridgeSelector — bridge map, initial selected key, gate state, and ownership flag.

    type BridgeSelectorConfig<TMap extends Record<BaseSelectorKey, BridgeInterface>> = {
        activated: boolean;
        bridges: TMap;
        initialKey: SelectorKey<TMap>;
        owned: boolean;
        syncWithChildren?: boolean;
    }

    Type Parameters

    Index
    activated: boolean
    bridges: TMap
    initialKey: SelectorKey<TMap>
    owned: boolean
    syncWithChildren?: boolean