dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
21 lines (20 loc) • 527 B
TypeScript
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$;