From 00ef998ee58c8ec021c9488d6226605996963090 Mon Sep 17 00:00:00 2001 From: ivans4 <42591226+ivans4@users.noreply.github.com> Date: Wed, 30 Oct 2019 08:57:25 -0700 Subject: [PATCH] fix(bluetooth-le): add isConnectable to ScanParams interface (#3204) --- 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 a1b43179d..0a7078dc0 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 {