Endo API documentation
    Preparing search index...

    Interface PromiseKit<T>

    A reified Promise

    interface PromiseKit<T> {
        promise: Promise<T>;
        reject: (reason: any) => void;
        resolve: (value: ERef<T>) => void;
    }

    Type Parameters

    • T
    Index

    Properties

    promise: Promise<T>
    reject: (reason: any) => void
    resolve: (value: ERef<T>) => void