From ba1f7ecfdd0b583a4cf2239d000646bd840d3e08 Mon Sep 17 00:00:00 2001 From: Justin D'Errico Date: Tue, 26 Apr 2022 10:50:36 -0400 Subject: [PATCH] fix(yearn): Add app index file (#275) --- src/apps/yearn/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/apps/yearn/index.ts diff --git a/src/apps/yearn/index.ts b/src/apps/yearn/index.ts new file mode 100644 index 000000000..3293fab22 --- /dev/null +++ b/src/apps/yearn/index.ts @@ -0,0 +1,10 @@ +export { YEARN_DEFINITION, YearnAppDefinition } from './yearn.definition'; +export { YearnAppModule } from './yearn.module'; +export { YearnContractFactory } from './contracts'; + +/* Helpers */ +export { YearnLikeVaultTokenHelper } from './helpers/yearn-like.vault.token-helper'; + +/* Contracts */ +export type { YearnVault } from './contracts'; +export type { YearnVaultV2 } from './contracts';