@iotize/tap
Version:
IoTize Device client for Javascript
29 lines (28 loc) • 649 B
TypeScript
/**
* Generated file. Do not edit
*/
import { TapResponse } from '@iotize/tap';
import { AbstractService, ServiceCallType } from '@iotize/tap';
export declare class BleService extends AbstractService {
resources: {
getAddress: ServiceCallType<void, string>;
};
/**
* Get BLE MAC address
*
* LWM2M path: /1024//22
*
* @tapVersion(">=1.0")
* @return
*/
getAddress(): Promise<TapResponse<string>>;
/**
*
*
* LWM2M path: /1024//22
*
* @tapVersion(">=1.0")
* @return call options
*/
getAddressCall(): ServiceCallType;
}