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