From 143e9f5627a8471643120d0ac49293c07ddb06b7 Mon Sep 17 00:00:00 2001 From: ssube Date: Tue, 4 Aug 2020 23:06:18 -0500 Subject: [PATCH] fix: remove export alias for include options --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 90f0c1f..217f26b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ export { CONFIG_SCHEMA } from './schema'; export { envType } from './type/Env'; -export { includeOptions as includeSchema, includeType } from './type/Include'; +export { includeOptions, includeType, IncludeOptions } from './type/Include'; export { regexpType } from './type/Regexp'; export { streamType } from './type/Stream';