unified-query
Version:
Composable search input with autocompletion and a rich query-language parser for the Unified Data System
10 lines (9 loc) • 388 B
TypeScript
import type { MicroParser } from './types.js';
/**
* Fallback string parser. Only job (beyond token book-keeping) is to
* **un-escape `\\@` → `@`** per the query-language spec.
*
* NOTE: keep this *last* in the `microParsers` array so it only fires when all
* the specialised parsers (date/time/uuid/boolean/…) have rejected.
*/
export declare const stringParser: MicroParser;