transferum
    Preparing search index...

    Interface AsyncPushableInterface<T>

    Asynchronous pushable contract — accepts data via asyncPush() returning a Promise.

    interface AsyncPushableInterface<T> {
        asyncPush(data: T): Promise<void>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index
    • Parameters

      • data: T

      Returns Promise<void>