mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
473 B
473 B
Home > puppeteer > UnwrapElementHandle
UnwrapElementHandle type
Unwraps a DOM element out of an ElementHandle instance
Signature:
export declare type UnwrapElementHandle<X> = X extends ElementHandle<infer E> ? E : X;
References: ElementHandle