transferum
    Preparing search index...

    Type Alias TransformBridgeConfig<TInput, TOutput>

    Configuration for TransformBridge — source, target, sync operator, and initial gate state.

    type TransformBridgeConfig<TInput, TOutput> = {
        activated: boolean;
        linkStrategy?: LinkStrategyInterface;
        operator: OperatorInterface<TInput, TOutput>;
        source: OutputTransfer<TInput>;
        target: InputTransfer<TOutput>;
    }

    Type Parameters

    • TInput
    • TOutput
    Index
    activated: boolean
    linkStrategy?: LinkStrategyInterface