aboutsummaryrefslogtreecommitdiff
path: root/app/enums.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/enums.ts')
-rw-r--r--app/enums.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/enums.ts b/app/enums.ts
new file mode 100644
index 0000000..d7784d8
--- /dev/null
+++ b/app/enums.ts
@@ -0,0 +1,11 @@
+export class HighlightType {
+ static NONE: string = "none";
+ static DURATION: string = "duration";
+ static ROWS: string = "rows";
+ static COST: string = "cost";
+}
+
+export enum EstimateDirection {
+ over,
+ under
+}