UNPKG

@thi.ng/parse

Version:

Purely functional parser combinators & AST generation for generic inputs

9 lines 318 B
import type { ScopeTransform } from "../api.js"; /** * Takes any number of {@link ScopeTransform}s and composes them into * new xform w/ left to right order of execution. * * @param xforms - */ export declare const comp: <T>(...xforms: ScopeTransform<T>[]) => ScopeTransform<T>; //# sourceMappingURL=comp.d.ts.map