From 409860590fc4814ac016b2057ad44a65540e1280 Mon Sep 17 00:00:00 2001 From: Papa Sougou Wele Date: Mon, 6 Jun 2022 17:16:46 -0400 Subject: [PATCH] fix(tarot): Export module --- src/apps/tarot/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/apps/tarot/index.ts diff --git a/src/apps/tarot/index.ts b/src/apps/tarot/index.ts new file mode 100644 index 000000000..4bdbca93c --- /dev/null +++ b/src/apps/tarot/index.ts @@ -0,0 +1,9 @@ +export { TAROT_DEFINITION, TarotAppDefinition } from './tarot.definition'; +export { TarotAppModule } from './tarot.module'; +export { TarotContractFactory } from './contracts'; + +/* Contracts */ +export type { TarotBorrowable } from './contracts'; +export type { TarotFactory } from './contracts'; +export type { TarotSupplyVault } from './contracts'; +export type { TarotVault } from './contracts';