Skip to content

Commit 110ce70

Browse files
committed
ts: lib/config/enum.js
1 parent f14fab4 commit 110ce70

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
'use strict'
2-
3-
exports.Environment = {
1+
export const Environment = {
42
development: 'development',
53
production: 'production',
64
test: 'test'
7-
}
5+
};
86

9-
exports.Permission = {
7+
export const Permission = {
108
freely: 'freely',
119
editable: 'editable',
1210
limited: 'limited',
1311
locked: 'locked',
1412
protected: 'protected',
1513
private: 'private'
16-
}
14+
};

0 commit comments

Comments
 (0)