UNPKG

189 BTypeScriptView Raw
1/**
2 * Checks if a given element is an input (input, select, textarea or button).
3 *
4 * @param node the element to check
5 */
6export default function isInput(node: Element | null): boolean;