@pusdn/pgz-comp-elep 0.2.4 → 0.2.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/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { debounce, throttle, formatNumber } from "./utils";
2
+ import { setupHttp } from "./utils/http";
2
3
  import type { App } from "vue";
3
4
  import TLayoutPage from "./layout-page";
4
5
  import TLayoutPageItem from "./layout-page-item";
@@ -33,5 +34,9 @@ export { TLayoutPage, TLayoutPageItem, TQueryCondition, TTable, TForm, TSelect,
33
34
  /**
34
35
  * @description 公共方法
35
36
  */
36
- export { throttle, debounce, formatNumber };
37
+ export { throttle, debounce, formatNumber, setupHttp };
38
+ /**
39
+ * @description 兼容配置方式
40
+ */
41
+ export declare function setupClientId(clientId: string): void;
37
42
  export default TuiPlus;