From c454571a7d7a6d1a4c5870c1dd02200840593dc8 Mon Sep 17 00:00:00 2001 From: Tommy Date: Wed, 15 Mar 2023 12:29:05 -0500 Subject: [PATCH] Simplify formatter export (#187) --- source/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/index.ts b/source/index.ts index 2007424e..4a8f4193 100644 --- a/source/index.ts +++ b/source/index.ts @@ -1,6 +1,5 @@ import tsd from './lib'; -import formatter from './lib/formatter'; export * from './lib/assertions/assert'; -export {formatter}; +export {default as formatter} from './lib/formatter'; export default tsd;