Remove const from action side and date type.

This commit is contained in:
Carter Bertolini 2023-11-14 17:06:39 -05:00
parent 9b725cbdcf
commit 9e99c8d17c

View File

@ -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,