udxcms 2.0.4 → 2.0.6
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/config/index.d.ts +3 -5
- package/dist/index.css +1 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +892 -803
- package/dist/router/Home.d.ts +1 -1
- package/package.json +1 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -6,11 +6,9 @@
|
|
|
6
6
|
export function setConfig(config: {
|
|
7
7
|
cdnurl: string;
|
|
8
8
|
}): void;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
*/
|
|
13
|
-
export function getConfig(): any;
|
|
9
|
+
export function getConfig(): {
|
|
10
|
+
cdnurl: string;
|
|
11
|
+
};
|
|
14
12
|
/**
|
|
15
13
|
* 获取配置对象
|
|
16
14
|
* @param {Object} overrideConfig - 可选的覆盖配置
|