UNPKG
ngx-address
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A simple address picker in angular.
github.com/cipchk/ngx-address
cipchk/ngx-address
ngx-address
/
components
/
interfaces
/
result.d.ts
21 lines
(20 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export
interface
Result
{
/** * 编号 * *
@type
{string} */
id:
string
;
/** * 名称 * *
@type
{string} */
name:
string
;
/** * 已选择路径项 * *
@type
{any[]} */
paths: any[]; }