From 52b100667d456616cfc58ed84d457c448b646f28 Mon Sep 17 00:00:00 2001 From: Carter Bertolini Date: Fri, 27 Oct 2023 16:31:21 -0400 Subject: [PATCH] Add action stuff to module exports. --- src/index.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 45a1724..8aa0da9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ 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, @@ -8,5 +9,12 @@ export { Portfolio, PortfolioProvider, Quote, - QuoteProvider + QuoteProvider, + Action, + ActionDateOptions, + ActionDateType, + ActionFetchOptions, + ActionFetchResponse, + ActionProvider, + ActionSide, };