Resolve "Remove const enums" #38

Merged
clbertolini merged 2 commits from 18-remove-const-enums into main 2023-11-14 22:07:19 +00:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@finvis/usxi",
"version": "1.6.0",
"version": "1.7.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",

View File

@ -1,7 +1,7 @@
/**
* Enum representing the possible sides of an action.
*/
export const enum ActionSide {
export enum ActionSide {
Buy,
Sell,
}
@ -41,7 +41,7 @@ export interface Action {
* Enum representing the type of date filter used in an action fetch.
* @enum {number}
*/
export const enum ActionDateType {
export enum ActionDateType {
On,
After,
Before,