import { PipeIR, SchemaIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/pipe.d.ts declare function slowPipe(ir: SchemaIR & { type: "pipe"; }, g: SlowGen): string; declare function fastPipe(ir: PipeIR, g: FastGen): string | null; //#endregion export { fastPipe, slowPipe }; //# sourceMappingURL=pipe.d.ts.map