botbook/node_modules/@sagold/json-query/dist/lib/parser/index.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

5 lines
197 B
TypeScript

import { IToken } from "ebnf";
declare const toJSON: (ast: any) => string;
export declare const parse: (query: any) => IToken;
export declare const reduce: (ast: IToken) => any;
export { toJSON };