@types/insert-css
Version:
TypeScript definitions for insert-css
14 lines (11 loc) • 330 B
TypeScript
export interface InsertCssOptions {
container?: HTMLElement | undefined;
prepend?: boolean | undefined;
}
export interface InsertCssStyleElement extends HTMLStyleElement {
styleSheet?: CSSStyleSheet | undefined;
}
export function insertCss(
css: string,
options?: InsertCssOptions,
): InsertCssStyleElement;