From 4761532c37b31d02e0bf9d04d00bf5227feaaffb Mon Sep 17 00:00:00 2001 From: ssube Date: Thu, 5 Aug 2021 22:26:10 -0500 Subject: [PATCH] feat: export include schema helper --- src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index ed9f453..2c61fc2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,9 @@ -export { createSchema, SchemaOptions } from './schema'; +export { + createIncludeSchema, + createSchema, + IncludeSchemaOptions, + SchemaOptions, +} from './schema'; export { envType } from './type/Env'; export { createInclude, IncludeOptions } from './type/Include'; export { regexpType } from './type/Regexp';