From aeeef49196d1c09c26ccac5539cba89040a52a51 Mon Sep 17 00:00:00 2001 From: Gadi Cohen Date: Thu, 11 Mar 2021 12:35:53 +0200 Subject: [PATCH] fix(index): add quoteCombine :) --- src/index-common.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/index-common.ts b/src/index-common.ts index 4149758f..af8851fc 100644 --- a/src/index-common.ts +++ b/src/index-common.ts @@ -12,12 +12,17 @@ import search from "./modules/search"; import recommendationsBySymbol from "./modules/recommendationsBySymbol"; import trendingSymbols from "./modules/trendingSymbols"; +// other +import quoteCombine from "./other/quoteCombine"; + export default { + // internal _env: {}, _fetch: yahooFinanceFetch, _moduleExec: moduleExec, _opts: options, + // modules, autoc, historical, quote, @@ -25,4 +30,7 @@ export default { search, recommendationsBySymbol, trendingSymbols, + + // other + quoteCombine, };