Skip to content

Commit

Permalink
chore: fixing export statements
Browse files Browse the repository at this point in the history
  • Loading branch information
aorumbayev committed Aug 31, 2023
1 parent 6b86ca2 commit 35c7aad
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@

import { normalizePrice, optInAsset, optOutAsset } from "./utils";
import { SubtopiaClient, SubtopiaRegistryClient } from "./clients";
import * as interfaces from "./interfaces";
import * as enums from "./enums";

export {
SubtopiaClient,
SubtopiaRegistryClient,
normalizePrice,
optInAsset,
optOutAsset,
enums,
interfaces,
};

export * from "./interfaces";
export * from "./enums";

0 comments on commit 35c7aad

Please sign in to comment.