mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 16:40:57 +00:00
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
/**
|
|
* 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;
|