UNPKG

tibu

Version:

tibu is a low fuss high fun PEG parser generator/DSL written in TypeScript

13 lines (12 loc) 320 B
import { Input } from "./tibu"; export declare class Result { success: boolean; startloc: number; endloc: number; value: string; children: Result[]; yielded: any; static fault(input: Input): Result; static pass(input: Input): Result; static composite(...results: Result[]): Result; }