import { Province } from './region'; import { BaseResponse } from './response'; import { AddressByNameResult, City, District, SubDistrict } from './coverage-area'; export interface ProvinceListResponse extends BaseResponse { datas: Province[]; } export interface CityListResponse extends BaseResponse { datas: City[]; } export interface DistrictListResponse extends BaseResponse { datas: District[]; } export interface SubDistrictListResponse extends BaseResponse { results: SubDistrict[]; } export interface DistrictByNameResponse extends BaseResponse { data: AddressByNameResult[]; }