fix(bluetooth-le): add isConnectable to ScanParams interface (#3204)

This commit is contained in:
ivans4 2019-10-30 08:57:25 -07:00 committed by Daniel Sogl
parent f81e181588
commit 00ef998ee5

View File

@ -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 {