UNPKG

195 BTypeScriptView Raw
1/**
2 * Modify the CSS of a DOM.
3 * @param dom
4 * @param css
5 * @returns
6 */
7export declare function modifyCSS(dom: HTMLElement | null | undefined, css: {
8 [key: string]: any;
9}): HTMLElement;