@@ -2324,31 +2324,31 @@ export interface $ZodRecordDef extends $ZodTypeDef {
2324
2324
valueType : $ZodType ;
2325
2325
}
2326
2326
2327
- type $InferZodRecordOutput <
2327
+ export type $InferZodRecordOutput <
2328
2328
Key extends $ZodRecordKey = $ZodRecordKey ,
2329
2329
Value extends $ZodType = $ZodType ,
2330
2330
> = undefined extends Key [ "_zod" ] [ "values" ]
2331
- ? string extends Key [ "_zod" ] [ " output" ]
2332
- ? Record < Key [ "_zod" ] [ " output" ] , core . output < Value > >
2333
- : number extends Key [ "_zod" ] [ " output" ]
2334
- ? Record < Key [ "_zod" ] [ " output" ] , core . output < Value > >
2335
- : symbol extends Key [ "_zod" ] [ " output" ]
2336
- ? Record < Key [ "_zod" ] [ " output" ] , core . output < Value > >
2337
- : Partial < Record < Key [ "_zod" ] [ " output" ] , core . output < Value > > >
2338
- : Record < Key [ "_zod" ] [ " output" ] , core . output < Value > > ;
2339
-
2340
- type $InferZodRecordInput <
2331
+ ? string extends core . output < Key >
2332
+ ? Record < core . output < Key > , core . output < Value > >
2333
+ : number extends core . output < Key >
2334
+ ? Record < core . output < Key > , core . output < Value > >
2335
+ : symbol extends core . output < Key >
2336
+ ? Record < core . output < Key > , core . output < Value > >
2337
+ : Partial < Record < core . output < Key > , core . output < Value > > >
2338
+ : Record < core . output < Key > , core . output < Value > > ;
2339
+
2340
+ export type $InferZodRecordInput <
2341
2341
Key extends $ZodRecordKey = $ZodRecordKey ,
2342
2342
Value extends $ZodType = $ZodType ,
2343
2343
> = undefined extends Key [ "_zod" ] [ "values" ]
2344
- ? string extends Key [ "_zod" ] [ " input" ]
2345
- ? Record < Key [ "_zod" ] [ " input" ] , Value [ "_zod" ] [ " input" ] >
2346
- : number extends Key [ "_zod" ] [ " input" ]
2347
- ? Record < Key [ "_zod" ] [ " input" ] , Value [ "_zod" ] [ " input" ] >
2348
- : symbol extends Key [ "_zod" ] [ " input" ]
2349
- ? Record < Key [ "_zod" ] [ " input" ] , Value [ "_zod" ] [ " input" ] >
2350
- : Partial < Record < Key [ "_zod" ] [ " input" ] , Value [ "_zod" ] [ " input" ] > >
2351
- : Record < Key [ "_zod" ] [ " input" ] , Value [ "_zod" ] [ " input" ] > ;
2344
+ ? string extends core . input < Key >
2345
+ ? Record < core . input < Key > , core . input < Value > >
2346
+ : number extends core . input < Key >
2347
+ ? Record < core . input < Key > , core . input < Value > >
2348
+ : symbol extends core . input < Key >
2349
+ ? Record < core . input < Key > , core . input < Value > >
2350
+ : Partial < Record < core . input < Key > , core . input < Value > > >
2351
+ : Record < core . input < Key > , core . input < Value > > ;
2352
2352
2353
2353
export interface $ZodRecordInternals < Key extends $ZodRecordKey = $ZodRecordKey , Value extends $ZodType = $ZodType >
2354
2354
extends $ZodTypeInternals < $InferZodRecordOutput < Key , Value > , $InferZodRecordInput < Key , Value > > {
0 commit comments