13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
export interface YandexLocationVariantDetect {
|
|
geo_id: number
|
|
address: string
|
|
}
|
|
|
|
export interface YandexLocationDetectResponse {
|
|
variants: YandexLocationVariantDetect[]
|
|
}
|
|
|
|
export interface YandexLocationDetectRequest {
|
|
location: string
|
|
}
|