UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

7 lines 379 B
/** * Loads all stylesheets from the given root element into the document. * @returns an array of promises that resolve when each stylesheet is loaded * @param document Document to load stylesheets into * @param root Document or ShadowRoot to load stylesheets from */ export declare function loadStyleSheets(document: Document, root: Document | ShadowRoot): Promise<void>[];