UNPKG

js-draw

Version:

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

4 lines (3 loc) 224 B
/** Returns the first ancestor of the given node (or the node itself) that is an HTMLElement */ declare const firstElementAncestorOfNode: (node: Node | null) => HTMLElement | null; export default firstElementAncestorOfNode;