You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
287 B
5 lines
287 B
/** Create a style element inside `target` or <head> after the last */
|
|
export declare const makeStyleTag: (target?: HTMLElement) => HTMLStyleElement;
|
|
/** Get the CSSStyleSheet instance for a given style element */
|
|
export declare const getSheet: (tag: HTMLStyleElement) => CSSStyleSheet;
|