export type PointVenteStatut = 'ACTIF' | 'INACTIF'; export interface PointVente { id: string; code: string; nom: string; adresse: string; ville: string; latitude: number; longitude: number; statut: PointVenteStatut; }