module-develop-kit 0.3.1 → 0.3.3
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/dist/index.d.ts +5 -0
- package/dist/index.es.js +613 -589
- package/dist/index.umd.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ export declare const sm4Decrypt: (data: string, params: ISm4Params) => string;
|
|
|
106
106
|
*/
|
|
107
107
|
export declare const sm4Encrypt: (data: string, params: ISm4Params) => string;
|
|
108
108
|
|
|
109
|
+
/**
|
|
110
|
+
* 禁用用户debugger
|
|
111
|
+
*/
|
|
112
|
+
export declare const startNoDebugger: () => void;
|
|
113
|
+
|
|
109
114
|
declare type TData = _TData | _TData[];
|
|
110
115
|
|
|
111
116
|
declare type _TData = null | undefined | number | string | Record<string, any>;
|