update interfaces: TripItem attachments

This commit is contained in:
itskovacs 2025-11-02 00:17:08 +01:00
parent c9dcbc75ec
commit 65865f2e2d

View File

@ -59,6 +59,7 @@ export interface TripItem {
image_id?: number;
gpx?: string;
paid_by?: string;
attachments?: TripAttachment[];
}
export interface TripStatus {
@ -85,6 +86,7 @@ export interface FlattenedTripItem {
image_id?: number;
gpx?: string;
paid_by?: string;
attachments?: TripAttachment[];
}
export interface TripMember {