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

22 lines
568 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName setStorage
*/
export interface IUnionSetStorageParams extends ICommonAPIParams {
key: string;
data: string;
}
/**
*
* @apiName setStorage
*/
export interface IUnionSetStorageResult {
}
/**
*
* @apiName setStorage
*/
export declare function setStorage$(params: IUnionSetStorageParams): Promise<IUnionSetStorageResult>;
export default setStorage$;