2020-04-12 11:46:37 -04:00
|
|
|
export interface Environment {
|
|
|
|
development: string;
|
|
|
|
production: string;
|
|
|
|
test: string;
|
2020-04-12 08:23:17 -04:00
|
|
|
}
|
|
|
|
|
2020-04-12 11:46:37 -04: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 08:23:17 -04:00
|
|
|
}
|