haifa-reminder/node_modules/node-html-parser/dist/matcher.d.ts

7 lines
267 B
TypeScript
Raw Normal View History

2023-07-26 11:01:58 +00:00
import { Adapter } from 'css-select/lib/types';
import HTMLElement from './nodes/html';
import Node from './nodes/node';
export declare type Predicate = (node: Node) => node is HTMLElement;
declare const _default: Adapter<Node, HTMLElement>;
export default _default;