transferum
    Preparing search index...

    Type Alias CompositeTransferConfig<TInput, TOutput>

    Configuration for UniversalCompositeTransfer — combines input/output transfers with optional explicit trigger/gate and owned resources.

    type CompositeTransferConfig<TInput, TOutput> = {
        asyncTriggerable?: AsyncTriggerableInterface;
        gate?: GateInterface;
        input: InputTransfer<TInput>;
        output: OutputTransfer<TOutput>;
        owned?: readonly DisposableInterface[];
        triggerable?: TriggerableInterface;
    }

    Type Parameters

    • TInput
    • TOutput
    Index
    asyncTriggerable?: AsyncTriggerableInterface
    owned?: readonly DisposableInterface[]
    triggerable?: TriggerableInterface