UNPKG

construct-style-sheets-polyfill

Version:
15 lines (11 loc) 317 B
declare module 'construct-style-sheets-polyfill'; interface CSSStyleSheet { replace(contents: string): Promise<CSSStyleSheet>; replaceSync(contents: string): void; } interface Document { adoptedStyleSheets: readonly CSSStyleSheet[]; } interface ShadowRoot { adoptedStyleSheets: readonly CSSStyleSheet[]; }