transferum
    Preparing search index...

    Interface AsyncPullableInterface<T>

    Asynchronous pullable contract — yields data via asyncPull() returning a Promise.

    interface AsyncPullableInterface<T> {
        asyncPull(): Promise<T | undefined>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index
    • Returns Promise<T | undefined>