UNPKG

@scinorandex/sparse

Version:

Yet another parser generator

4 lines (2 loc) 159 B
import { GrammarToken } from "../meta/common"; export type Result<T> = { success: true; value: T } | { success: false; reason: string; token: GrammarToken };