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

18 lines
581 B
TypeScript
Raw Normal View History

/**
*
*/
export declare type IUnionOnBLEConnectionStateChangedParams = (e: IUnionOnBLEConnectionStateChangedResult) => void;
/**
*
*/
export interface IUnionOnBLEConnectionStateChangedResult {
deviceId: string;
connected: boolean;
}
/**
*
* @apiName onBLEConnectionStateChanged
*/
export declare function onBLEConnectionStateChanged$(params: IUnionOnBLEConnectionStateChangedParams): void;
export default onBLEConnectionStateChanged$;