Added POI interface to represent points of interest.

master
Alix JEUDI--LEMOINE 5 days ago
parent 02a4542455
commit 55ba6b0f9f

@ -0,0 +1,11 @@
export interface POI {
id: string;
location: number[];
complete_address: string;
title: string;
files: string[];
description: string;
user_id: null;
is_poi: boolean;
date?: string;
}
Loading…
Cancel
Save