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