From 6e2529e1c6e4177a41b22e31497afe03f6922637 Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Tue, 26 Mar 2024 14:24:08 -0600 Subject: [PATCH] Export ObjectSchema, Optionalize, Simplify 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';