easy-soft-utility 2.4.31 → 2.4.33
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/es/index.js +3 -6440
- package/es/utils/accessWayAssist.d.ts +4 -0
- package/es/utils/applicationAssist.d.ts +2 -2
- package/es/utils/modelAssist.d.ts +27 -0
- package/package.json +2 -2
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
export function setApplicationInitialConfig(config: number): void;
|
|
6
6
|
/**
|
|
7
7
|
* Set application external config list
|
|
8
|
-
* @param {Array} configs application initial config list
|
|
8
|
+
* @param {Object|Array} configs application initial config list
|
|
9
9
|
*/
|
|
10
|
-
export function setApplicationExternalConfigList(
|
|
10
|
+
export function setApplicationExternalConfigList(configs: Object | any[]): void;
|
|
11
11
|
/**
|
|
12
12
|
* Get application initial config
|
|
13
13
|
* @returns
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 获取 modelNameList
|
|
3
|
+
*
|
|
4
|
+
* @export
|
|
5
|
+
* @param {*} fn
|
|
6
|
+
* @returns
|
|
7
|
+
*/
|
|
8
|
+
export function getModelNameList(): void;
|
|
9
|
+
/**
|
|
10
|
+
* 设置 modelNameList
|
|
11
|
+
*
|
|
12
|
+
* @export
|
|
13
|
+
* @param {*} fn
|
|
14
|
+
* @returns
|
|
15
|
+
*/
|
|
16
|
+
export function setModelNameList(modelNameList: any): void;
|
|
17
|
+
/**
|
|
18
|
+
* 移除 modelNameList
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @param {*} fn
|
|
22
|
+
* @returns
|
|
23
|
+
*/
|
|
24
|
+
export function removeModelNameList(): void;
|
|
25
|
+
export namespace storageKeyCollection {
|
|
26
|
+
const modelNameList: string;
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-soft-utility",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.33",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "easy-soft-utility",
|
|
6
6
|
"keywords": [
|
|
@@ -136,5 +136,5 @@
|
|
|
136
136
|
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
|
|
137
137
|
"webpack": "^5.75.0"
|
|
138
138
|
},
|
|
139
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "795a590aa87bdea4fbd13d312c4468cda2510989"
|
|
140
140
|
}
|