mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 18:26:32 -05:00
7b9f9a487b
Signed-off-by: David Mehren <git@herrmehren.de>
29 lines
536 B
TypeScript
29 lines
536 B
TypeScript
export interface Environment {
|
|
development: string;
|
|
production: string;
|
|
test: string;
|
|
}
|
|
|
|
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'
|
|
}
|