UNPKG

@snippetify/haiti-localities

Version:
18 lines (15 loc) 602 B
export interface LocalityInterface { getCounties (): any[]; getDistricts (): any[]; getDistrictsByCounty (value: string): any[]; getMunicipalities (): any[]; getMunicipalitiesByDistrict (value: string): any[]; getMunicipalitiesByCounty (value: string): any[]; getSubMunicipalities (): any[]; getSubMunicipalitiesByMunicipality (value: string): any[]; getSubMunicipalitiesByDistrict (value: string): any[]; getSubMunicipalitiesByCounty (value: string): any[]; find (value: string): any; } declare const Locality: LocalityInterface; export default Locality;