transferum
    Preparing search index...

    Interface AsyncOutputFlowInterface<T>

    Asynchronous read-only flow — yields data via async read().

    interface AsyncOutputFlowInterface<T> {
        read(): Promise<T | undefined>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index
    • Returns Promise<T | undefined>