UNPKG

computed-style-to-inline-style

Version:
9 lines (8 loc) 292 B
/** * A function that iterates through the computed style properties of a HTML * element and redefines them as inline styles. */ export default function computedStyleToInlineStyle(element: HTMLElement | SVGElement, options?: { recursive?: boolean; properties?: string[]; }): void;