zhizhi/node_modules/dingtalk-jsapi/api/biz/util/clearWebStoreCache.d.ts

23 lines
641 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.

/**
* 清理Web缓存 请求参数定义
* @apiName biz.util.clearWebStoreCache
*/
export interface IBizUtilClearWebStoreCacheParams {
}
/**
* 清理Web缓存 返回结果定义
* @apiName biz.util.clearWebStoreCache
*/
export interface IBizUtilClearWebStoreCacheResult {
/** 用户是否选择清理 */
choice_clear: boolean;
}
/**
* 清理Web缓存
* @apiName biz.util.clearWebStoreCache
* @supportVersion Windows6.0.22
* @author Windows 心存
*/
export declare function clearWebStoreCache$(params: IBizUtilClearWebStoreCacheParams): Promise<IBizUtilClearWebStoreCacheResult>;
export default clearWebStoreCache$;