Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 420 Bytes

puppeteer.unwrapelementhandle.md

File metadata and controls

13 lines (8 loc) · 420 Bytes

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;