UNPKG

liqe

Version:

Lightweight and performant Lucene-like parser, serializer and search engine.

5 lines (4 loc) 217 B
import { type LiqeQuery } from './types'; type RegExpCache = Record<string, RegExp>; export declare const createStringTest: (regexCache: RegExpCache, ast: LiqeQuery) => (subject: string) => false | string; export {};