From c7b3cee0c59f4ecb02ea00bca1920a6379bf2af8 Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Tue, 21 May 2024 13:57:28 -0400 Subject: [PATCH] Export util types used by downstream libraries --- src/index.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d4c38347..fb6626c4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,4 +4,18 @@ export * from './structs/coercions.js'; export * from './structs/refinements.js'; export * from './structs/types.js'; export * from './structs/utilities.js'; -export type { ObjectSchema, Optionalize, Simplify } from './utils.js'; +export type { + AnyStruct, + EnumSchema, + InferStructTuple, + IsExactMatch, + IsMatch, + IsRecord, + IsTuple, + ObjectSchema, + OmitBy, + Optionalize, + PickBy, + Simplify, + UnionToIntersection, +} from './utils.js';