zhizhi/node_modules/dingtalk-jsapi/api/union/onBLEPeripheralConnectionSt...

22 lines
840 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName onBLEPeripheralConnectionStateChanged
*/
export interface IUnionOnBLEPeripheralConnectionStateChangedParams extends ICommonAPIParams {
}
/**
*
* @apiName onBLEPeripheralConnectionStateChanged
*/
export interface IUnionOnBLEPeripheralConnectionStateChangedResult {
deviceId: string;
connected: boolean;
}
/**
*
* @apiName onBLEPeripheralConnectionStateChanged
*/
export declare function onBLEPeripheralConnectionStateChanged$(params: IUnionOnBLEPeripheralConnectionStateChangedParams): Promise<IUnionOnBLEPeripheralConnectionStateChangedResult>;
export default onBLEPeripheralConnectionStateChanged$;