6 lines
84 B
TypeScript
6 lines
84 B
TypeScript
export default interface ILocation {
|
|
lat: number
|
|
lon: number
|
|
place?: string
|
|
}
|