jmash-core 0.0.66 → 0.0.67
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/dts/src/api/index.d.ts +3 -14
- package/package.json +1 -1
package/dts/src/api/index.d.ts
CHANGED
|
@@ -3,10 +3,7 @@ export declare class EnumDict {
|
|
|
3
3
|
module: string;
|
|
4
4
|
enumClass: string;
|
|
5
5
|
type: number;
|
|
6
|
-
values:
|
|
7
|
-
key: string;
|
|
8
|
-
value: string;
|
|
9
|
-
}[];
|
|
6
|
+
values: Entry[];
|
|
10
7
|
constructor(module: string, enumClass: string, type?: number);
|
|
11
8
|
useEnumValues(): Promise<Entry[]>;
|
|
12
9
|
getEnumValue(key: string): string;
|
|
@@ -14,10 +11,7 @@ export declare class EnumDict {
|
|
|
14
11
|
/** 查询缓存枚举键值对 */
|
|
15
12
|
export declare function enumMapCache(module: string, className: string, type?: number): Promise<Entry[]>;
|
|
16
13
|
export declare abstract class BizDict {
|
|
17
|
-
values:
|
|
18
|
-
key: string;
|
|
19
|
-
value: string;
|
|
20
|
-
}[];
|
|
14
|
+
values: Entry[];
|
|
21
15
|
query: any;
|
|
22
16
|
constructor(query: any);
|
|
23
17
|
abstract useValues(): Promise<Entry[]>;
|
|
@@ -27,12 +21,7 @@ export declare class EnableBizDict extends BizDict {
|
|
|
27
21
|
useValues(): Promise<Entry[]>;
|
|
28
22
|
}
|
|
29
23
|
export declare abstract class BizLayDict {
|
|
30
|
-
values:
|
|
31
|
-
value: string;
|
|
32
|
-
label: string;
|
|
33
|
-
parentId: string;
|
|
34
|
-
children: any[];
|
|
35
|
-
}[];
|
|
24
|
+
values: LayEntry[];
|
|
36
25
|
query: any;
|
|
37
26
|
constructor(query: any);
|
|
38
27
|
abstract useValues(): Promise<LayEntry[]>;
|