diff --git a/src/plugins/ble.ts b/src/plugins/ble.ts index a947a87d6..fa3a545c7 100644 --- a/src/plugins/ble.ts +++ b/src/plugins/ble.ts @@ -400,17 +400,10 @@ export class BLE { /** * Report if bluetooth is enabled. * - * @usage - * ``` - * BLE.isEnabled().then( - * () => { console.log('enabled'); }, - * () => { console.log('not enabled'); } - * ); - * ``` - * @return Returns a Promise. + * @return {Promise} Returns a Promise that resolves if Bluetooth is enabled, and rejects if disabled. */ @Cordova() - static isEnabled(): Promise { return; } + static isEnabled(): Promise { return; } /** * Open System Bluetooth settings (Android only).