DefinitelyTyped/types/dom-matches/index.d.ts
2020-01-07 16:34:26 -08:00

8 lines
324 B
TypeScript

// Type definitions for dom-matches 2.0
// Project: https://github.com/necolas/dom-matches
// Definitions by: Avi Vahl <https://github.com/AviVahl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function matches(element: Element | null | undefined, selector: string): boolean;
export = matches;