fix createAt updatedAt types

This commit is contained in:
Thomas Ruoff
2025-03-26 23:21:27 +01:00
parent d5ac2f09dc
commit d149f326ed
2 changed files with 9 additions and 15 deletions

View File

@@ -28,6 +28,8 @@ export interface IBooking {
destination?: string
days?: string[]
calendarEventId?: string
createdAt?: NativeDate
updatedAt?: NativeDate
toJSON?: () => IBooking
}