UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

7 lines (6 loc) 231 B
/** * Makes a clone of `element` and recursively applies styles from the original to the * clone's children. */ declare const cloneElementWithStyles: (element: HTMLElement) => HTMLElement; export default cloneElementWithStyles;