@cloudtower/eagle 0.33.20 → 0.33.21
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/cjs/stats1.html +1 -1
- package/dist/cjs/utils/cterror.js +4 -2
- package/dist/components.css +3397 -3397
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/utils/cterror.js +4 -2
- package/dist/linaria.merged.scss +3813 -3813
- package/dist/src/utils/cterror.d.ts +1 -1
- package/dist/src/utils/type.d.ts +3 -3
- package/dist/style.css +3200 -3200
- package/package.json +4 -4
package/dist/src/utils/type.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type { SizeType as Antd5SizeType } from "antd5/lib/config-provider/SizeContext";
|
|
2
2
|
export type CTErrorType = {
|
|
3
|
-
code?: string;
|
|
3
|
+
code?: string | number;
|
|
4
4
|
/**
|
|
5
5
|
* @type array | undefined
|
|
6
6
|
*/
|
|
@@ -16,9 +16,9 @@ export type CTErrorType = {
|
|
|
16
16
|
[key: string]: any;
|
|
17
17
|
};
|
|
18
18
|
/**
|
|
19
|
-
* @type string | undefined
|
|
19
|
+
* @type string | number | undefined
|
|
20
20
|
*/
|
|
21
|
-
reason?: string;
|
|
21
|
+
reason?: string | number;
|
|
22
22
|
}[];
|
|
23
23
|
/**
|
|
24
24
|
* @type string
|