Add UI to trips
This commit is contained in:
@@ -103,15 +103,27 @@ export interface TripEvent {
|
||||
trip_id: string;
|
||||
title: string;
|
||||
date: string;
|
||||
time: string | null;
|
||||
start_time: string | null;
|
||||
end_time: string | null;
|
||||
location: string;
|
||||
location_inherited: boolean;
|
||||
maps_link: string | null;
|
||||
place_id: string | null;
|
||||
notes: string | null;
|
||||
attendees: Record<string, string>;
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
export interface PlaceResult {
|
||||
name: string;
|
||||
address: string;
|
||||
place_id: string;
|
||||
lat: number;
|
||||
lng: number;
|
||||
maps_link: string;
|
||||
rating?: number;
|
||||
}
|
||||
|
||||
export interface TripRecord {
|
||||
trip_id: string;
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user