Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 408 Bytes

puppeteer.wrapelementhandle.md

File metadata and controls

13 lines (8 loc) · 408 Bytes

Home > puppeteer > WrapElementHandle

WrapElementHandle type

Wraps a DOM element into an ElementHandle instance

Signature:

export declare type WrapElementHandle<X> = X extends Element ? ElementHandle<X> : X;