-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.d.ts
42 lines (35 loc) · 834 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Type definitions for better-echarts-maps v0.0.3
// Project: https://github.com/xuqingkuang/better-echarts-maps
// Definitions by: XQ Kuang <https://github.com/xuqingkuang>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module 'better-echarts-maps' {
/**
* All of maps
*/
export const all: any[];
/**
* All of China provinces overall maps
*/
export const China: any[];
/**
* All of China regions overall maps
*/
export const ChinaRegions: any[];
/**
* All of Provinces of China details maps
*/
export const ChinaProvinces: any[];
/**
* Cities coordinate of China
*/
export const ChinaCitiesCoordinate: {
[key: string]: string;
};
export default {
all,
China,
ChinaRegions,
ChinaProvinces,
ChinaCitiesCoordinate,
};
}