UNPKG

parjs

Version:

Library for building parsers using combinators.

8 lines 292 B
import type { ParjsCombinator } from "../parjser"; /** * Applies the source parser and yields the constant value `result`. * * @param result The constant value to yield. */ export declare function mapConst<T>(result: T): ParjsCombinator<unknown, T>; //# sourceMappingURL=mapConst.d.ts.map