UNPKG

parjs

Version:

Library for building parsers using combinators.

7 lines 277 B
import type { ParjsCombinator } from "../../"; /** * Applies the source parser. If it succeeds, backtracks to the current position in the input and * yields the result. */ export declare function backtrack<T>(): ParjsCombinator<T, T>; //# sourceMappingURL=backtrack.d.ts.map