quis
Version:
A simple DSL for data sorting and filtering
19 lines (18 loc) • 428 B
text/typescript
/**
* Quis DSL Parser - Types Only Export
*
* This file exports only the TypeScript type definitions without any runtime code.
* Use this when you only need the types for type checking or interfaces.
*/
export type {
Quis,
Parser,
ParseOptions,
ParseResult,
ValuesCallback,
CustomConditionEvaluator,
CustomConditionRegistry,
Location,
Expected,
QuitSyntaxError
} from './types.js';