From 8e8447d2f93096dd7144d54e24840505cb296732 Mon Sep 17 00:00:00 2001 From: Cayman Date: Wed, 13 Apr 2022 15:06:11 -0500 Subject: [PATCH] Don't export types from switchable --- src/switchable.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/switchable.ts b/src/switchable.ts index c329acc..94d2322 100644 --- a/src/switchable.ts +++ b/src/switchable.ts @@ -1,8 +1,6 @@ import type {IBls, Implementation} from "./interface.js"; import {getImplementation} from "./getImplementation.js"; -export * from "./interface.js"; - // TODO: Use a Proxy for example to throw an error if it's not initialized yet const bls: IBls = {} as IBls; export default bls;