UNPKG

299 BTypeScriptView Raw
1/** Create a style element inside `target` or <head> after the last */
2export declare const makeStyleTag: (target?: HTMLElement | undefined) => HTMLStyleElement;
3/** Get the CSSStyleSheet instance for a given style element */
4export declare const getSheet: (tag: HTMLStyleElement) => CSSStyleSheet;