fix: replace NativeDate with Date in IBooking

Use standard Date type instead of removed Mongoose 9 alias.

Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com>
This commit is contained in:
v0
2026-02-06 07:28:05 +00:00
committed by Thomas Ruoff
parent 90d9ab2d67
commit 38c0a5df7a

View File

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