ts: lib/config/enum.js

Signed-off-by: Raccoon <raccoon@hackmd.io>
This commit is contained in:
Raccoon 2021-06-12 07:08:48 +08:00
parent b78cfc3d96
commit 3b52b19dc9
No known key found for this signature in database
GPG Key ID: 06770355DC9ECD38

View File

@ -1,16 +1,14 @@
'use strict' export const Environment = {
exports.Environment = {
development: 'development', development: 'development',
production: 'production', production: 'production',
test: 'test' test: 'test'
} };
exports.Permission = { export const Permission = {
freely: 'freely', freely: 'freely',
editable: 'editable', editable: 'editable',
limited: 'limited', limited: 'limited',
locked: 'locked', locked: 'locked',
protected: 'protected', protected: 'protected',
private: 'private' private: 'private'
} };