Skip to content

Commit

Permalink
Export Lazy and Reference types
Browse files Browse the repository at this point in the history
  • Loading branch information
v.kolesnikov committed Aug 23, 2023
1 parent 41b9c58 commit 9cd4f15
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import DateSchema, { create as dateCreate } from './date';
import ObjectSchema, { AnyObject, create as objectCreate } from './object';
import ArraySchema, { create as arrayCreate } from './array';
import TupleSchema, { create as tupleCreate } from './tuple';
import { create as refCreate } from './Reference';
import { create as lazyCreate } from './Lazy';
import Reference, { create as refCreate } from './Reference';
import Lazy, { create as lazyCreate } from './Lazy';
import ValidationError from './ValidationError';
import reach, { getIn } from './util/reach';
import isSchema from './util/isSchema';
Expand Down Expand Up @@ -84,6 +84,8 @@ export type {
LocaleObject,
ValidateOptions,
DefaultThunk,
Lazy,
Reference,
};

export {
Expand Down

0 comments on commit 9cd4f15

Please sign in to comment.