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) • 257 B
import { RegionId } from '../types/index.js'; type CLRegionItem = { id: RegionId; name: string; shortName: string; abbreviation: string; isoCode: string; }; declare const regions: CLRegionItem[]; export { type CLRegionItem, regions };