zhizhi/node_modules/dingtalk-jsapi/api/union/getStorage.d.ts

21 lines
568 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
* key的缓存数据
* @apiName getStorage
*/
export interface IUnionGetStorageParams extends ICommonAPIParams {
key: string;
}
/**
* key的缓存数据
* @apiName getStorage
*/
export interface IUnionGetStorageResult {
}
/**
* key的缓存数据
* @apiName getStorage
*/
export declare function getStorage$(params: IUnionGetStorageParams): Promise<IUnionGetStorageResult>;
export default getStorage$;