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