hlyc-web-pack 3.6.25 → 3.6.26
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/lib/brother/utils/index.d.ts +17 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { FormListType } from '../../GenerateForm';
|
|
3
3
|
import { SelectType, AnyObjectType } from '../../brother/typings';
|
|
4
|
+
/**
|
|
5
|
+
* @description 获取localStorage
|
|
6
|
+
* @author bihongbin
|
|
7
|
+
* @param {any} key
|
|
8
|
+
* @return {*}
|
|
9
|
+
* @Date 2023-07-12 10:37:20
|
|
10
|
+
*/
|
|
11
|
+
export declare const getStorage: (key: any) => any;
|
|
12
|
+
/**
|
|
13
|
+
* @description 设置localStorage
|
|
14
|
+
* @author bihongbin
|
|
15
|
+
* @param {any} key
|
|
16
|
+
* @param {any} value
|
|
17
|
+
* @return {*}
|
|
18
|
+
* @Date 2023-07-12 10:37:33
|
|
19
|
+
*/
|
|
20
|
+
export declare const setStorage: (key: any, value: any) => null | undefined;
|
|
4
21
|
/**
|
|
5
22
|
* @description 比较2个对象是否相等
|
|
6
23
|
* @Author bihongbin
|