doum
9 天以前 d5810177a4e77ea273971e51dd150bd84906de6f
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
export declare const apiName = "internal.util.setSystemSetting";
/**
 * 设置系统设置值 请求参数定义
 * @apiName internal.util.setSystemSetting
 */
export interface IInternalUtilSetSystemSettingParams {
    /** 设置项Id */
    item: string;
    /** 设置项值 */
    value: string;
}
/**
 * 设置系统设置值 返回结果定义 result: boolean: 是否设置成功
 * @apiName internal.util.setSystemSetting
 */
export interface IInternalUtilSetSystemSettingResult {
    [key: string]: any;
}
/**
 * 设置系统设置值
 * @apiName internal.util.setSystemSetting
 * @supportVersion Win: 6.0.19  Mac: 6.0.19
 * @author Win:周镛, MAC:奔云
 */
export declare function setSystemSetting$(params: IInternalUtilSetSystemSettingParams): Promise<IInternalUtilSetSystemSettingResult>;
export default setSystemSetting$;