dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
20 lines (19 loc) • 629 B
TypeScript
import { ICommonAPIParams } from '../../constant/types';
/**
* 获取已缓存的JSAPI返回值 请求参数定义
* @apiName getCachedAPIResponse
*/
export interface IUnionGetCachedAPIResponseParams extends ICommonAPIParams {
}
/**
* 获取已缓存的JSAPI返回值 返回结果定义
* @apiName getCachedAPIResponse
*/
export interface IUnionGetCachedAPIResponseResult {
}
/**
* 获取已缓存的JSAPI返回值
* @apiName getCachedAPIResponse
*/
export declare function getCachedAPIResponse$(params: IUnionGetCachedAPIResponseParams): Promise<IUnionGetCachedAPIResponseResult>;
export default getCachedAPIResponse$;