chore(): fix module export conflicts (#633)

* chore(): fix module export conflicts

* remove export{}

* resolve conflicting export names
This commit is contained in:
Ibrahim Hadeed
2016-10-05 20:29:40 -04:00
committed by GitHub
parent bbbbb3e8d0
commit ad3bef2e5a
4 changed files with 99 additions and 101 deletions
+5 -5
View File
@@ -155,10 +155,10 @@ export class Hotspot {
static isWifiDirectSupported(): Promise<boolean> { return; }
@Cordova()
static scanWifi(): Promise<Array<Network>> { return; }
static scanWifi(): Promise<Array<HotspotNetwork>> { return; }
@Cordova()
static scanWifiByLevel(): Promise<Array<Network>> { return; }
static scanWifiByLevel(): Promise<Array<HotspotNetwork>> { return; }
@Cordova()
static startWifiPeriodicallyScan(interval: number, duration: number): Promise<any> { return; }
@@ -167,7 +167,7 @@ export class Hotspot {
static stopWifiPeriodicallyScan(): Promise<any> { return; }
@Cordova()
static getNetConfig(): Promise<NetworkConfig> { return; }
static getNetConfig(): Promise<HotspotNetworkConfig> { return; }
@Cordova()
static getConnectionInfo(): Promise<ConnectionInfo> { return; }
@@ -243,7 +243,7 @@ export interface ConnectionInfo {
networkID: string;
}
export interface Network {
export interface HotspotNetwork {
/**
* @property {string} SSID
* Human readable network name
@@ -275,7 +275,7 @@ export interface Network {
*/
capabilities: string;
}
export interface NetworkConfig {
export interface HotspotNetworkConfig {
/**
* @property {string} deviceIPAddress - Device IP Address
*/