UNPKG

@wordpress/dom

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