/** * TS-JSON-Schema-Generator does not handle Partial correctly, creating these unsatisfiable schemas: * { "allOf": [ { "type": "array" }, { "type": "object" } ] } * * We need to clean up the schema to remove the allOf of type object when it is not needed. */ export declare function cleanupInvalidArrayAllOf(schema: unknown): unknown; //# sourceMappingURL=schemaPatch.d.ts.map