docs(bluetooth-le): fix jsdoc

This commit is contained in:
Daniel 2018-08-25 12:08:48 +02:00
parent 8f19719d2a
commit 89140c1502

View File

@ -67,7 +67,7 @@ export interface InitParams extends InitPeripheralParams {
export interface ScanParams { 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 */ /* An array of service IDs to filter the scan or empty array / null. This parameter is not supported on Windows platform yet */
services?: string[]; 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; allowDuplicates?: boolean;
/** Defaults to Low Power. Available from API21 / API 23 (Android) */ /** Defaults to Low Power. Available from API21 / API 23 (Android) */
scanMode?: BluetoothScanMode; scanMode?: BluetoothScanMode;
@ -181,7 +181,7 @@ export interface MTU extends DeviceInfo {
} }
export interface BondedStatus extends CommonInfo { export interface BondedStatus extends CommonInfo {
/** Bonded status*/ /** Bonded status */
isBonded: boolean; isBonded: boolean;
} }
@ -322,7 +322,7 @@ export interface DescriptorResult extends OperationResult {
export interface Characteristics extends DeviceInfo { export interface Characteristics extends DeviceInfo {
/** Service's id */ /** Service's id */
service: string; service: string;
/** Array of characteristic objects*/ /** Array of characteristic objects */
characteristics: Characteristic[]; characteristics: Characteristic[];
} }