UNPKG

@gechiui/dom

Version:
10 lines 352 B
/** * Check whether the given element is an input field of type number * and has a valueAsNumber * * @param {Node} node The HTML node. * * @return {node is HTMLInputElement} True if the node is input and holds a number. */ export default function isNumberInput(node: Node): node is HTMLInputElement; //# sourceMappingURL=is-number-input.d.ts.map