Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix reScanAndLoadWifiList() return type #108

Merged
merged 1 commit into from
Aug 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions lib/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,13 @@ declare module 'react-native-wifi-reborn' {

/**
* Returns a list of nearby WiFI networks.
*
* @example
* const results = await WifiManager.loadWifiList();
results => {
let wifiArray = JSON.parse(results);
wifiArray.map((value, index) =>
console.log(`Wifi ${index + 1} - ${value.SSID}`)
);
},
*/
export function loadWifiList(): Promise<Array<WifiEntry>>;

/**
* Similar to `loadWifiList` but it forcefully starts a new WiFi scan and only passes the results when the scan is done.
*/
export function reScanAndLoadWifiList(): Promise<Array<string>>;
export function reScanAndLoadWifiList(): Promise<Array<WifiEntry>>;

/**
* Method to check if wifi is enabled.
Expand Down