diff --git a/src/plugins/ble.ts b/src/plugins/ble.ts index 770287b7a6..99882d67b8 100644 --- a/src/plugins/ble.ts +++ b/src/plugins/ble.ts @@ -423,4 +423,15 @@ export class BLE { @Cordova() static enable(): Promise { return; } + /** + * Read the RSSI value on the device connection. + * + * @param {string} deviceId UUID or MAC address of the peripheral + * + *@returns {Promise} + */ + @Cordova() + static readRSSI( + deviceId: string, + ): Promise { return; } }