Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 352 Bytes

puppeteer.unwrappromiselike.md

File metadata and controls

11 lines (7 loc) · 352 Bytes

Home > puppeteer > UnwrapPromiseLike

UnwrapPromiseLike type

Signature:

export declare type UnwrapPromiseLike<T> = T extends PromiseLike<infer U> ? U : T;