UNPKG
vn-units
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A package helps get all VietNam administrative units
github.com/bravo680git/vn-units
vn-units
/
dist
/
api
/
unit.d.ts
10 lines
(9 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
UnitType
}
from
"../type"
;
export
type
GetUnitOptions
= {
date
?:
Date
;
provinceCode
?:
string
;
districtCode
?:
string
; };
export
declare
const
unitApi
: {
getUnits
(
type
:
UnitType
,
opts
?:
GetUnitOptions
):
Promise
<
any
>; };