diff --git a/lib/config/enum.js b/lib/config/enum.ts similarity index 76% rename from lib/config/enum.js rename to lib/config/enum.ts index 07cdfcfe..25559921 100644 --- a/lib/config/enum.js +++ b/lib/config/enum.ts @@ -1,16 +1,14 @@ -'use strict' - -exports.Environment = { +export const Environment = { development: 'development', production: 'production', test: 'test' -} +}; -exports.Permission = { +export const Permission = { freely: 'freely', editable: 'editable', limited: 'limited', locked: 'locked', protected: 'protected', private: 'private' -} +};