From 9e99c8d17ca8b184d36037cacb8eab2c97f7bb00 Mon Sep 17 00:00:00 2001 From: Carter Bertolini Date: Tue, 14 Nov 2023 17:06:39 -0500 Subject: [PATCH] Remove const from action side and date type. --- src/interface/actions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface/actions.ts b/src/interface/actions.ts index e03b8af..a81fd97 100644 --- a/src/interface/actions.ts +++ b/src/interface/actions.ts @@ -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,