20 lines
342 B
TypeScript
20 lines
342 B
TypeScript
export interface WaypointsEntity {
|
|
id: number;
|
|
name: string;
|
|
lat: number;
|
|
lon: number;
|
|
description: string;
|
|
img: string;
|
|
locationName: string;
|
|
distance?: number;
|
|
visited?: boolean;
|
|
}
|
|
export interface newWaypoint {
|
|
name: string;
|
|
lat: number;
|
|
lon: number;
|
|
description: string;
|
|
img: string;
|
|
locationName: string;
|
|
}
|