UNPKG

@clregions/data

Version:

Paquete de datos para regiones de Chile, proporcionando acceso a información estructurada en formato JSON, CSV y SQL

13 lines (10 loc) • 258 B
import { RegionId } from '../types/index.cjs'; type CLRegionItem = { id: RegionId; name: string; shortName: string; abbreviation: string; isoCode: string; }; declare const regions: CLRegionItem[]; export { type CLRegionItem, regions };