nigerian-state-city-selector
Version:
nigerian-state-city-selector
13 lines (12 loc) • 387 B
TypeScript
import { StateDataInterface, CityDataInterface } from "./interface/index";
export declare class CountryStateCitySelector {
private countryList;
private stateList;
private cityList;
private currentCountry;
private currentState;
constructor();
getStates(): StateDataInterface[];
selectState(stateName: string): void;
getCities(): CityDataInterface[];
}