Make enums action option enums const and fix linter issues.

This commit is contained in:
2023-10-27 16:21:52 -04:00
parent c113bd4f5c
commit dcdb2bad1a
3 changed files with 10 additions and 7 deletions

View File

@ -51,7 +51,7 @@ export class AlpacaExchange implements Exchange {
this.portfolioProvider = new AlpacaPortfolioProvider(this.alpaca);
this.quoteProvider = new AlpacaQuoteProvider(this.alpaca);
this.actionProvider = undefined!;
this.actionProvider = null!;
this.name = 'Alpaca';
}