@uifabric/utilities
Version:
Fluent UI React utilities for building components.
10 lines (9 loc) • 398 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. Also note that the SSR flag is used to test ssr scenarios even if
* document is defined (from JSDOM for example.)
*
* @public
*/
export declare function getDocument(rootElement?: HTMLElement | null): Document | undefined;