From fbb763a0e4d2c204aae9c94f22865b843f7f925f Mon Sep 17 00:00:00 2001 From: Amir Hossein Shekari Date: Wed, 16 Dec 2020 15:27:03 +0330 Subject: [PATCH] fix(Type): Fix BSSID type in android only BSSID is a string, not a number. --- lib/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/index.d.ts b/lib/types/index.d.ts index a3fb400..68ace09 100644 --- a/lib/types/index.d.ts +++ b/lib/types/index.d.ts @@ -121,7 +121,7 @@ declare module 'react-native-wifi-reborn' { export interface WifiEntry { SSID: string; - BSSID: number; + BSSID: string; capabilities: string; frequency: number; level: number;