feat(SW-914): add enum

This commit is contained in:
Fredrik Thorsson
2024-11-28 17:29:53 +01:00
parent 3524b62f6c
commit 0b4710f380
7 changed files with 27 additions and 16 deletions

View File

@@ -1,5 +1,11 @@
import type { Hotel } from "@/types/hotel"
export enum Periods {
day = "Day",
night = "Night",
allDay = "AllDay",
}
export type ParkingAmenityProps = {
parking: Hotel["parking"]
}