@gent-js/gent
Version:
template-based data generator.
12 lines (11 loc) • 697 B
TypeScript
import { CstParser } from "chevrotain";
export declare function lex(input: string): import("chevrotain").ILexingResult;
export declare class CommandParser extends CstParser {
constructor();
commandExpression: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
commandName: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
commandOption: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
commandOptionKey: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
commandOptionValue: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
}
export declare const commandParser: CommandParser;