Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 422 Bytes

eth-connect.ifuture.md

File metadata and controls

16 lines (12 loc) · 422 Bytes

Home > eth-connect > IFuture

IFuture type

Signature:

export declare type IFuture<T> = Promise<T> & {
    resolve: (x: T) => void;
    reject: (x: Error) => void;
    finally: (fn: () => void) => void;
    isPending: boolean;
};