MrShi
9 天以前 cb94ff4f0a46eb74c21dd7b34b8d958ef9a9f11c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export declare const apiName = "internal.circle.setStorage";
/**
 * 设置圈子native-小程序共享业务缓存 请求参数定义
 * @apiName internal.circle.setStorage
 */
export interface IInternalCircleSetStorageParams {
    /** 缓存业务类型 */
    bizType: string;
    /** 缓存数据的key */
    key: string;
    /** 缓存的数据 */
    data: string;
}
/**
 * 设置圈子native-小程序共享业务缓存 返回结果定义
 * @apiName internal.circle.setStorage
 */
export interface IInternalCircleSetStorageResult {
}
/**
 * 设置圈子native-小程序共享业务缓存
 * @apiName internal.circle.setStorage
 * @supportVersion ios: 6.0.12 android: 6.0.12
 * @author android:千下;ios:子理
 */
export declare function setStorage$(params: IInternalCircleSetStorageParams): Promise<IInternalCircleSetStorageResult>;
export default setStorage$;