mirror of
https://github.com/status-im/codimd.git
synced 2025-02-10 13:26:51 +00:00
3b52b19dc9
Signed-off-by: Raccoon <raccoon@hackmd.io>
15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
export const Environment = {
|
|
development: 'development',
|
|
production: 'production',
|
|
test: 'test'
|
|
};
|
|
|
|
export const Permission = {
|
|
freely: 'freely',
|
|
editable: 'editable',
|
|
limited: 'limited',
|
|
locked: 'locked',
|
|
protected: 'protected',
|
|
private: 'private'
|
|
};
|