e4k-data 4.104.32 → 4.104.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/typings/types.d.ts +13 -16
package/package.json
CHANGED
package/typings/types.d.ts
CHANGED
|
@@ -1,23 +1,20 @@
|
|
|
1
|
-
//export * from './data';
|
|
2
1
|
import {Data} from './data';
|
|
3
|
-
//export * from './images';
|
|
4
2
|
import {Images} from './images';
|
|
5
|
-
//export * from './languages';
|
|
6
3
|
import {Languages} from './languages';
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
imageData: Images;
|
|
12
|
-
imageBaseUrl: string;
|
|
13
|
-
languages: Languages;
|
|
14
|
-
network: Network;
|
|
15
|
-
}
|
|
5
|
+
export * from './data';
|
|
6
|
+
export * from './images';
|
|
7
|
+
export * from './languages';
|
|
16
8
|
|
|
17
|
-
export
|
|
9
|
+
export declare const country: Countries;
|
|
10
|
+
export declare const data: Data;
|
|
11
|
+
export declare const imageData: Images;
|
|
12
|
+
export declare const imageBaseUrl: string;
|
|
13
|
+
export declare const languages: Languages;
|
|
14
|
+
export declare const network: Network;
|
|
18
15
|
|
|
19
16
|
///region Country
|
|
20
|
-
|
|
17
|
+
export interface Countries {
|
|
21
18
|
versionNo: number,
|
|
22
19
|
deployTime: number,
|
|
23
20
|
AR: Country,
|
|
@@ -54,7 +51,7 @@ declare interface Countries {
|
|
|
54
51
|
HANT: Country,
|
|
55
52
|
}
|
|
56
53
|
|
|
57
|
-
|
|
54
|
+
export interface Country {
|
|
58
55
|
country: string,
|
|
59
56
|
lang: string,
|
|
60
57
|
flashCode: string,
|
|
@@ -68,7 +65,7 @@ declare interface Country {
|
|
|
68
65
|
///endregion
|
|
69
66
|
|
|
70
67
|
///region Network
|
|
71
|
-
|
|
68
|
+
export interface Network {
|
|
72
69
|
versionNo: number,
|
|
73
70
|
deployTime: number,
|
|
74
71
|
is_approval: boolean,
|
|
@@ -95,7 +92,7 @@ declare interface Network {
|
|
|
95
92
|
}
|
|
96
93
|
}
|
|
97
94
|
|
|
98
|
-
|
|
95
|
+
export interface NetworkInstance {
|
|
99
96
|
value: number,
|
|
100
97
|
server: string,
|
|
101
98
|
port: number,
|