transferum
    Preparing search index...

    Type Alias StoredChannelTransferConfig<T>

    StoredChannelTransferConfig: BaseStateTransferConfig<T> & ErrorHandlingConfig<
        StoredChannelTransfer<T>,
    > & {
        destroy: () => void;
        onDestroyError?: ErrorHandler<StoredChannelTransfer<T>>;
        setup: (emit: DataHandler<T>) => void;
    }

    Configuration for StoredChannelTransfer — channel config plus optional initial value.

    Type Parameters

    • T