Skip to content

Commit 22579ab

Browse files
committed
feat: adds exports getPool/useGetPool
1 parent 279b114 commit 22579ab

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

src/hooks/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
export { useGetPool } from "@/hooks/useGetPool";
12
export { useGetQuote } from "@/hooks/useGetQuote";

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ export * from "@/core/uniDevKitV4";
33
export * from "@/core/uniDevKitV4Factory";
44

55
// Hooks
6+
export * from "@/hooks/useGetPool";
67
export * from "@/hooks/useGetQuote";
78

89
// Utils
910
export * from "@/utils/getQuote";
11+
export * from "@/utils/getTokenInstance";
1012

1113
// Types
1214
export * from "@/types";

src/types/hooks/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "@/types/hooks/useGetPool";
2+
export * from "@/types/hooks/useGetQuote";

src/types/utils/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
export * from "@/types/utils/getPool";
12
export * from "@/types/utils/getQuote";

0 commit comments

Comments
 (0)