UNPKG

vn-units

Version:

A package helps get all VietNam administrative units

10 lines (9 loc) 243 B
import { UnitType } from "../type"; export type GetUnitOptions = { date?: Date; provinceCode?: string; districtCode?: string; }; export declare const unitApi: { getUnits(type: UnitType, opts?: GetUnitOptions): Promise<any>; };