I'm using your library from typescript, I've installed it via npm and by default I can use quite a few definitions. But a lot of the inputs and outputs are not declared in index.d.ts - so for example const out: TI.MACDOutput = this.macd.getResult(); doesn't work because node_modules/technicalindicators/declarations/index.d.ts has no exported member MACDOutput
It would be nice if they were declared so we could simply use them if we're using typescript.
I'm using your library from typescript, I've installed it via npm and by default I can use quite a few definitions. But a lot of the inputs and outputs are not declared in index.d.ts - so for example
const out: TI.MACDOutput = this.macd.getResult();
doesn't work becausenode_modules/technicalindicators/declarations/index.d.ts has no exported member MACDOutput
It would be nice if they were declared so we could simply use them if we're using typescript.