From 73f4ffe986294c69553f13f023329aef8afb7c40 Mon Sep 17 00:00:00 2001 From: Tyler Han Date: Thu, 18 Feb 2021 00:03:53 -0500 Subject: [PATCH] fix: export conventions --- index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index 7cd06b6..d2a7f40 100644 --- a/index.ts +++ b/index.ts @@ -1,7 +1,8 @@ -import App from '@/lib/RuntimeClientFactory'; +import RuntimeClientFactory from '@/lib/RuntimeClientFactory'; +export * from '@/lib/RuntimeClientFactory'; export * from '@/lib/RuntimeClient'; export * from '@/lib/types'; export * from '@/lib/Utils'; -export default App; +export default RuntimeClientFactory;