From 35c7aad5febcf66dad933e2d1df7f401abf0370d Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Fri, 1 Sep 2023 01:21:50 +0200 Subject: [PATCH] chore: fixing export statements --- src/index.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index ddc8643..6383549 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,8 +5,6 @@ import { normalizePrice, optInAsset, optOutAsset } from "./utils"; import { SubtopiaClient, SubtopiaRegistryClient } from "./clients"; -import * as interfaces from "./interfaces"; -import * as enums from "./enums"; export { SubtopiaClient, @@ -14,6 +12,7 @@ export { normalizePrice, optInAsset, optOutAsset, - enums, - interfaces, }; + +export * from "./interfaces"; +export * from "./enums";