UNPKG

gros-bras-shared

Version:

This holds all shared files such as interfaces or helpers used by Gros Bras, both frontoffices and baackoffices, and backend etc...

11 lines (10 loc) 261 B
import { ICity, IGeoCoordinates } from '.'; export interface ILocation { closest_point: null | { label: string; coords: IGeoCoordinates; }; coords: IGeoCoordinates | null; city: ICity; distance_from_road: number; }