france-cities-js
Version:
Search and get informations about french cities from the package offline database
24 lines (23 loc) • 461 B
TypeScript
export declare type City = {
id: number;
department_code: string;
insee_code: string;
zip_code: string;
name: string;
slug: string;
gps_lat: number;
gps_lng: number;
};
export declare type Department = {
id: number;
code: string;
region_code: string;
name: string;
slug: string;
};
export declare type Region = {
id: number;
code: string;
name: string;
slug: string;
};