Skip to content

Commit

Permalink
fix(types): AnyObjectSchema anys
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Dec 7, 2020
1 parent 0c2b6a0 commit 1c54665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type SchemaOf<T> = T extends AnyObject
? ArraySchema<SchemaOf<E>>
: BaseSchema<Maybe<T>, AnyObject, T>;

export type AnyObjectSchema = ObjectSchema<any, any, any>;
export type AnyObjectSchema = ObjectSchema<any, any, any, any>;
export type { SchemaOf, TypeOf, Asserts, Asserts as InferType, AnySchema };

export {
Expand Down

0 comments on commit 1c54665

Please sign in to comment.