Skip to content

Commit

Permalink
Export Lazy and Reference types (#2093)
Browse files Browse the repository at this point in the history
Co-authored-by: v.kolesnikov <v.kolesnikov@ideco.ru>
  • Loading branch information
ithrforu and v.kolesnikov authored Aug 28, 2023
1 parent 4de9ea0 commit 1ee9b21
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 1ee9b21

Please sign in to comment.