Files
ETB/ETB-FrontEnd/node_modules/@mui/x-internals/export/loadStyleSheets.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

7 lines
379 B
TypeScript

/**
* 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>[];