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) 262 B
interface Options { tag?: string; } /** Returns the first node or element with `textContent` matching `expectedText`. */ declare const findNodeWithText: (expectedText: string, parent: Node, options?: Options) => Node | null; export default findNodeWithText;