UNPKG

react-use

Version:
3 lines (2 loc) 179 B
export declare type PromiseType<P extends Promise<any>> = P extends Promise<infer T> ? T : never; export declare type FunctionReturningPromise = (...args: any[]) => Promise<any>;