From 7d8a2e15a32b38a7f971e53808d87cbeeaa2ddcd Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Wed, 27 Mar 2024 08:24:28 -0600 Subject: [PATCH] Export ObjectSchema, Optionalize, Simplify (#17) We make use of these types in `@metamask/utils`. Exporting them allows us to upgrade this package to `@metamask/superstruct`. --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 89afcb96..d4c38347 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,3 +4,4 @@ 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';