transferum
    Preparing search index...

    Interface AsyncOperatorInterface<TInput, TOutput>

    Asynchronous data transformation operator — maps TInput to Promise.

    interface AsyncOperatorInterface<TInput, TOutput> {
        apply(data: TInput): Promise<TOutput>;
    }

    Type Parameters

    • TInput
    • TOutput

    Implemented by

    Index