aboutsummaryrefslogtreecommitdiff
path: root/app/enums.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/enums.ts')
-rw-r--r--app/enums.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/enums.ts b/app/enums.ts
index 6d8b387..bcbd258 100644
--- a/app/enums.ts
+++ b/app/enums.ts
@@ -9,3 +9,9 @@ export enum EstimateDirection {
over,
under
}
+
+export class ViewMode {
+ static FULL: string = 'full';
+ static COMPACT: string = 'compact';
+ static DOT: string = 'dot';
+}