Adding more typings for hotspot.ts

This commit is contained in:
Louis Orleans
2016-05-05 17:57:49 -07:00
parent 6fab67ca9f
commit b4b131c82a
5 changed files with 244 additions and 43 deletions
+27
View File
@@ -0,0 +1,27 @@
export class ConnectionInfo {
/**
* @property {string} SSID
* The service set identifier (SSID) of the current 802.11 network.
*/
SSID: string;
/**
* @property {string} BSSID
* The basic service set identifier (BSSID) of the current access point.
*/
BSSID: string;
/**
* @property {string} linkSpeed
* The current link speed in Mbps
*/
linkSpeed: string;
/**
* @property {string} IPAddress
* The IP Address
*/
IPAddress: string;
/**
* @property {string} networkID
* Each configured network has a unique small integer ID, used to identify the network when performing operations on the supplicant.
*/
networkID: string;
}