From ce3191f75e4ce5d116c714260f6d6f199043d42f Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 21 Oct 2019 09:44:13 -0700 Subject: [PATCH] fix(bluetooth-le): add isConnectable to ScanParams interface --- src/@ionic-native/plugins/bluetooth-le/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/@ionic-native/plugins/bluetooth-le/index.ts b/src/@ionic-native/plugins/bluetooth-le/index.ts index a1b43179d0..0a7078dc01 100644 --- a/src/@ionic-native/plugins/bluetooth-le/index.ts +++ b/src/@ionic-native/plugins/bluetooth-le/index.ts @@ -82,6 +82,8 @@ export interface ScanParams { matchNum?: BluetoothMatchNum; /** Defaults to All Matches. Available from API21 / API 23. (Android) */ callbackType?: BluetoothCallbackType; + /** True/false to show only connectable devices, rather than all devices ever seen, defaults to false (Windows) */ + isConnectable?: boolean; } export interface NotifyParams {