matches.d.ts 194 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 /** * Checks if a given element matches a selector. * * @param node the element * @param selector the selector */ export default function matches(node: Element, selector: string): boolean;