aboutsummaryrefslogtreecommitdiff
path: root/app/enums.ts
diff options
context:
space:
mode:
authorAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
committerAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
commit5310ac7d8eb1838a6297117bc7f9fca70291f46a (patch)
tree28f54b184cb85f04e6d6720dd03258f3728fedde /app/enums.ts
initial commit
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
+}