From 89140c15020c563cf6b6a35bd349307eb84713c0 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 25 Aug 2018 12:08:48 +0200 Subject: [PATCH] docs(bluetooth-le): fix jsdoc --- src/@ionic-native/plugins/bluetooth-le/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/@ionic-native/plugins/bluetooth-le/index.ts b/src/@ionic-native/plugins/bluetooth-le/index.ts index 555d7ef6e..d6abc2c69 100644 --- a/src/@ionic-native/plugins/bluetooth-le/index.ts +++ b/src/@ionic-native/plugins/bluetooth-le/index.ts @@ -67,7 +67,7 @@ export interface InitParams extends InitPeripheralParams { export interface ScanParams { /* An array of service IDs to filter the scan or empty array / null. This parameter is not supported on Windows platform yet */ services?: string[]; - /** True/false to allow duplicate advertisement packets, defaults to false (iOS)*/ + /** True/false to allow duplicate advertisement packets, defaults to false (iOS) */ allowDuplicates?: boolean; /** Defaults to Low Power. Available from API21 / API 23 (Android) */ scanMode?: BluetoothScanMode; @@ -181,7 +181,7 @@ export interface MTU extends DeviceInfo { } export interface BondedStatus extends CommonInfo { - /** Bonded status*/ + /** Bonded status */ isBonded: boolean; } @@ -322,7 +322,7 @@ export interface DescriptorResult extends OperationResult { export interface Characteristics extends DeviceInfo { /** Service's id */ service: string; - /** Array of characteristic objects*/ + /** Array of characteristic objects */ characteristics: Characteristic[]; }