Fixed unexported enum

This commit is contained in:
Nicolai Ort 2020-06-08 13:17:42 +02:00
parent 831d91498a
commit 301d2d9354

View File

@ -36,9 +36,9 @@ export class BackendService {
} }
enum Priority { export enum Priority {
High="high", High="high",
Middle="middle", Medium="medium",
Low="low" Low="low"
} }