Merge branch '18-remove-const-enums' into 'main'
Resolve "Remove const enums" Closes #18 See merge request finvis/usxi!20
This commit is contained in:
commit
902bb611f2
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@finvis/usxi",
|
"name": "@finvis/usxi",
|
||||||
"version": "1.6.0",
|
"version": "1.7.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Enum representing the possible sides of an action.
|
* Enum representing the possible sides of an action.
|
||||||
*/
|
*/
|
||||||
export const enum ActionSide {
|
export enum ActionSide {
|
||||||
Buy,
|
Buy,
|
||||||
Sell,
|
Sell,
|
||||||
}
|
}
|
||||||
@ -41,7 +41,7 @@ export interface Action {
|
|||||||
* Enum representing the type of date filter used in an action fetch.
|
* Enum representing the type of date filter used in an action fetch.
|
||||||
* @enum {number}
|
* @enum {number}
|
||||||
*/
|
*/
|
||||||
export const enum ActionDateType {
|
export enum ActionDateType {
|
||||||
On,
|
On,
|
||||||
After,
|
After,
|
||||||
Before,
|
Before,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user