Files
2026-01-23 01:33:35 +01:00

8 lines
251 B
TypeScript

import type { Node, Options } from './types.js';
declare const graphmatch: {
(node: Node, input: string, options?: Options): boolean;
compile(node: Node, options?: Options): RegExp;
};
export type { Node, Options };
export default graphmatch;