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'
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'
}
};