2020-04-12 15:46:37 +00:00
|
|
|
export interface Environment {
|
|
|
|
development: string;
|
|
|
|
production: string;
|
|
|
|
test: string;
|
2020-04-12 12:23:17 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 15:46:37 +00:00
|
|
|
export const Environment: Environment = {
|
|
|
|
development: 'development',
|
|
|
|
production: 'production',
|
|
|
|
test: 'test'
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Permission {
|
|
|
|
freely: string;
|
|
|
|
editable: string;
|
|
|
|
limited: string;
|
|
|
|
locked: string;
|
|
|
|
protected: string;
|
|
|
|
private: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const Permission: Permission = {
|
|
|
|
freely: 'freely',
|
|
|
|
editable: 'editable',
|
|
|
|
limited: 'limited',
|
|
|
|
locked: 'locked',
|
|
|
|
protected: 'protected',
|
|
|
|
private: 'private'
|
2020-04-12 12:23:17 +00:00
|
|
|
}
|