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