mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 11:03:01 +08:00
Fixing typos
This commit is contained in:
parent
9682ac8f11
commit
116dc1a1b3
@ -97,7 +97,7 @@ export class Hotspot {
|
|||||||
* Promise that connection to the WiFi network was successfull, rejected if unsuccessful
|
* Promise that connection to the WiFi network was successfull, rejected if unsuccessful
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static connectToHotspot(ssid: string, password: string): Promise<void> {return; }
|
static connectToWifi(ssid: string, password: string): Promise<void> {return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connect to a WiFi network
|
* Connect to a WiFi network
|
||||||
@ -167,10 +167,10 @@ export class Hotspot {
|
|||||||
static scanWifiByLevel(): Promise<Array<Network>> {return; }
|
static scanWifiByLevel(): Promise<Array<Network>> {return; }
|
||||||
|
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static startPeriodicallyScan(interval: number, duration: number): Promise<any> {return; }
|
static startWifiPeriodicallyScan(interval: number, duration: number): Promise<any> {return; }
|
||||||
|
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static stopPeriodicallyScan(): Promise<any> {return; }
|
static stopWifiPeriodicallyScan(): Promise<any> {return; }
|
||||||
|
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static getNetConfig(): Promise<NetworkConfig> {return; }
|
static getNetConfig(): Promise<NetworkConfig> {return; }
|
||||||
@ -209,7 +209,7 @@ export class Hotspot {
|
|||||||
* @return {Promise<boolean>} - A Promise for whether the IP Address is reachable
|
* @return {Promise<boolean>} - A Promise for whether the IP Address is reachable
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
static isPortLife(ip: string): Promise<boolean> {return; }
|
static isPortLive(ip: string): Promise<boolean> {return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if device is rooted
|
* Checks if device is rooted
|
||||||
|
Loading…
Reference in New Issue
Block a user