@gmod/bed
Version:
A BED file format parser with autoSql support
12 lines (11 loc) • 481 B
TypeScript
declare const peg$allowedStartRules: string[];
declare class peg$SyntaxError extends SyntaxError {
static buildMessage(expected: any, found: any): string;
constructor(message: any, expected: any, found: any, location: any);
expected: any;
found: any;
location: any;
format(sources: any): string;
}
declare function peg$parse(input: any, options: any): any;
export { peg$allowedStartRules as StartRules, peg$SyntaxError as SyntaxError, peg$parse as parse };