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

25 lines
783 B
TypeScript
Raw Normal View History

/**
*
* @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$;