♻️ 函数式调用替代to-loading

This commit is contained in:
目棃
2024-11-15 17:52:06 +08:00
parent c87ec77543
commit 0c24b95fff
24 changed files with 297 additions and 701 deletions

View File

@@ -1,28 +0,0 @@
/**
* @file types/Component/Loading.d.ts
* @description Component Loading 类型声明文件
* @since Beta v0.4.2
*/
/**
* @description Loading 命名空间
* @namespace TGApp.Component.Loading
* @since Beta v0.4.2
* @memberof TGApp.Component
*/
declare namespace TGApp.Component.Loading {
/**
* @description Loading 参数-用于Emits
* @since Beta v0.4.2
* @interface EmitParams
* @property {boolean} show 显示
* @property {string} title 标题
* @property {string} text 副标题
* @return EmitParams
*/
interface EmitParams {
show: boolean;
title?: string;
text?: string;
}
}