countries-states-cities-service
Version:
Get the World's countries, states, regions and cities
10 lines • 494 B
TypeScript
import { Countries } from '@ac-dev/countries-service';
import { States } from '@ac-dev/states-service';
import { Cities } from '@ac-dev/cities-service';
import type { Country } from '@ac-dev/countries-service';
import type { State } from '@ac-dev/states-service';
import type { City } from '@ac-dev/cities-service';
declare type SortType = 'alphabetical' | 'asc' | 'desc';
export type { Country, State, City, SortType };
export { Cities, Countries, States };
//# sourceMappingURL=index.d.ts.map