zhizhi/node_modules/dingtalk-jsapi/api/device/notification/showPreloader.d.ts

25 lines
783 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 显示浮层 请求参数定义
* @apiName device.notification.showPreloader
*/
export interface IDeviceNotificationShowPreloaderParams {
/** loading显示的字符空表示不显示文字 */
text?: string;
/** 是否显示icon默认true */
showIcon?: boolean;
}
/**
* 显示浮层 返回结果定义
* @apiName device.notification.showPreloader
*/
export interface IDeviceNotificationShowPreloaderResult {
}
/**
* 显示浮层
* 显示浮层请和hidePreloader配对使用
* @apiName device.notification.showPreloader
* @supportVersion ios: 2.4.0 android: 2.4.0
*/
export declare function showPreloader$(params: IDeviceNotificationShowPreloaderParams): Promise<IDeviceNotificationShowPreloaderResult>;
export default showPreloader$;