@@ -2324,31 +2324,31 @@ export interface $ZodRecordDef extends $ZodTypeDef {
23242324 valueType : $ZodType ;
23252325}
23262326
2327- type $InferZodRecordOutput <
2327+ export type $InferZodRecordOutput <
23282328 Key extends $ZodRecordKey = $ZodRecordKey ,
23292329 Value extends $ZodType = $ZodType ,
23302330> = 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 <
23412341 Key extends $ZodRecordKey = $ZodRecordKey ,
23422342 Value extends $ZodType = $ZodType ,
23432343> = 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 > > ;
23522352
23532353export interface $ZodRecordInternals < Key extends $ZodRecordKey = $ZodRecordKey , Value extends $ZodType = $ZodType >
23542354 extends $ZodTypeInternals < $InferZodRecordOutput < Key , Value > , $InferZodRecordInput < Key , Value > > {
0 commit comments