Files
WrenchBoardIonic2023/src/app/interfaces/location.ts
T
CHIEFSOFT\ameye 0ce80a0d20 location maps
2023-10-25 17:34:16 -04:00

14 lines
251 B
TypeScript

export interface Location {
country: string;
lat: number;
lng: number;
description: string;
locations: Array<Locations>;
}
export interface Locations {
name: string;
lat: number;
lng: number;
description: string;
}