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.
13 lines
395 B
13 lines
395 B
interface Options {
|
|
attachTo?: Element;
|
|
csp?: {
|
|
nonce?: string;
|
|
};
|
|
prepend?: boolean;
|
|
mark?: string;
|
|
}
|
|
export declare function injectCSS(css: string, option?: Options): HTMLStyleElement;
|
|
export declare function removeCSS(key: string, option?: Options): void;
|
|
export declare function updateCSS(css: string, key: string, option?: Options): HTMLStyleElement;
|
|
export {};
|