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';