1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import { ICommonAPIParams } from '../../constant/types';
| /**
| * 显示加载提示 请求参数定义
| * @apiName showLoading
| */
| export interface IUnionShowLoadingParams extends ICommonAPIParams {
| content: string;
| }
| /**
| * 显示加载提示 返回结果定义
| * @apiName showLoading
| */
| export interface IUnionShowLoadingResult {
| }
| /**
| * 显示加载提示
| * @apiName showLoading
| */
| export declare function showLoading$(params: IUnionShowLoadingParams): Promise<IUnionShowLoadingResult>;
| export default showLoading$;
|
|