Skip to content

Commit

Permalink
Update types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KATT authored Mar 5, 2024
1 parent e5e8619 commit c6cc665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4832,7 +4832,7 @@ export interface ZodReadonlyDef<T extends ZodTypeAny = ZodTypeAny>
export class ZodReadonly<T extends ZodTypeAny> extends ZodType<
MakeReadonly<T["_output"]>,
ZodReadonlyDef<T>,
T["_input"]
MakeReadonly<T["_input"]>
> {
_parse(input: ParseInput): ParseReturnType<this["_output"]> {
const result = this._def.innerType._parse(input);
Expand Down

0 comments on commit c6cc665

Please sign in to comment.