mobilizon.chapril.org-mobil.../js/src/types/address.model.ts

14 lines
242 B
TypeScript

export interface IAddress {
description: string;
floor: string;
street: string;
locality: string;
postal_code: string;
region: string;
country: string;
geom: {
lat: number;
lon: number;
}
}