further code improvements

This commit is contained in:
Thomas Ruoff
2020-08-29 00:12:01 +02:00
committed by Thomas Ruoff
parent 52a68e9989
commit 4b16e07985
5 changed files with 23 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
export const BOOKING_STATUS = {
REQUESTED: 'requested',
CONFIRMED: 'confirmed',
REJECTED: 'rejected',
CANCELED: 'canceled',
export enum BOOKING_STATUS {
REQUESTED = 'requested',
CONFIRMED = 'confirmed',
REJECTED = 'rejected',
CANCELED = 'canceled',
}