From 5f6acd99fbd38f008074a89e26da3b18cfb50fea Mon Sep 17 00:00:00 2001 From: Carter Bertolini Date: Fri, 27 Oct 2023 16:35:34 -0400 Subject: [PATCH] Redo interface exports. --- src/index.ts | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/src/index.ts b/src/index.ts index 8aa0da9..c85fec1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,20 +1,4 @@ -import { Exchange } from "./interface/exchange"; -import { Position, Portfolio, PortfolioProvider } from "./interface/portfolio"; -import { Quote, QuoteProvider } from "./interface/quote"; -import { Action, ActionDateOptions, ActionDateType, ActionFetchOptions, ActionFetchResponse, ActionProvider, ActionSide } from './interface/actions'; - -export { - Exchange, - Position, - Portfolio, - PortfolioProvider, - Quote, - QuoteProvider, - Action, - ActionDateOptions, - ActionDateType, - ActionFetchOptions, - ActionFetchResponse, - ActionProvider, - ActionSide, -}; +export * from './interface/exchange'; +export * from './interface/portfolio'; +export * from './interface/quote'; +export * from './interface/actions';