aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/enums.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/lib/enums.js')
-rw-r--r--app/scripts/lib/enums.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/scripts/lib/enums.js b/app/scripts/lib/enums.js
new file mode 100644
index 000000000..0a3afca47
--- /dev/null
+++ b/app/scripts/lib/enums.js
@@ -0,0 +1,9 @@
+const ENVIRONMENT_TYPE_POPUP = 'popup'
+const ENVIRONMENT_TYPE_NOTIFICATION = 'notification'
+const ENVIRONMENT_TYPE_FULLSCREEN = 'fullscreen'
+
+module.exports = {
+ ENVIRONMENT_TYPE_POPUP,
+ ENVIRONMENT_TYPE_NOTIFICATION,
+ ENVIRONMENT_TYPE_FULLSCREEN,
+}