export interface Webcam { name: string; url: string; completeUrl: string; time: number; } export interface WebcamPoi { type: string; properties: WebcamProperties; geometry: WebcamGeometry; } export interface WebcamGeometry { type: string; coordinates: number[]; } export interface WebcamProperties { CODE: string; LIBELLE: string; TYPE: string; CAP: number; nsv: number; type: string; id: string; }