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