parjs
Version:
Library for building parsers using combinators.
8 lines • 317 B
TypeScript
import type { ParjsCombinator, ParjsProjection } from "../parjser";
/**
* Applies `action` to each result emitted by the source parser and emits its results unchanged.
*
* @param action
*/
export declare function each<T>(action: ParjsProjection<T, void>): ParjsCombinator<T, T>;
//# sourceMappingURL=each.d.ts.map