MrShi
4 天以前 05aec1e9986fbe3e907259bb1a1396f129bd0fa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { ICommonAPIParams } from '../../constant/types';
/**
 * 设置读特征通知模式 请求参数定义
 * @apiName notifyBLECharacteristicValueChange
 */
export interface IUnionNotifyBLECharacteristicValueChangeParams extends ICommonAPIParams {
    state?: boolean;
    deviceId: string;
    serviceId: string;
    descriptorId?: string;
    characteristicId: string;
}
/**
 * 设置读特征通知模式 返回结果定义
 * @apiName notifyBLECharacteristicValueChange
 */
export interface IUnionNotifyBLECharacteristicValueChangeResult {
}
/**
 * 设置读特征通知模式
 * @apiName notifyBLECharacteristicValueChange
 */
export declare function notifyBLECharacteristicValueChange$(params: IUnionNotifyBLECharacteristicValueChangeParams): Promise<IUnionNotifyBLECharacteristicValueChangeResult>;
export default notifyBLECharacteristicValueChange$;