9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
|
/**
|
||
|
* Helper to get the document object. Note that in popup window cases, document
|
||
|
* might be the wrong document, which is why we look at ownerDocument for the
|
||
|
* truth.
|
||
|
*
|
||
|
* @public
|
||
|
*/
|
||
|
export declare function getDocument(rootElement?: HTMLElement | null): Document | undefined;
|