Skip to content

Commit

Permalink
fix: ts errors
Browse files Browse the repository at this point in the history
  • Loading branch information
timrbula committed Jul 1, 2022
1 parent e7ca85b commit b5eef80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const HttpMethod = Object.freeze({
Get: "get",
});

export const ExecutionStatus = Object.freeze({
export const ExecutionStatus = {
Cancelled: "cancelled",
Completed: "completed",
Failure: "failure",
Expand All @@ -28,7 +28,7 @@ export const ExecutionStatus = Object.freeze({
NotStarted: "notstarted",
Skipped: "skipped",
Waiting: "waiting",
});
};

export const ExecutionStatusCopy = Object.freeze({
[ExecutionStatus.Cancelled]: "Cancelled",
Expand Down

0 comments on commit b5eef80

Please sign in to comment.