Actually exporting an interface instead of a class

This commit is contained in:
Louis Orleans
2016-05-08 18:59:47 -07:00
parent 6f50138d9e
commit b280c052c7
4 changed files with 4 additions and 4 deletions
@@ -1,7 +1,7 @@
/** /**
* @name ConnectionInfo * @name ConnectionInfo
*/ */
export class ConnectionInfo { export interface ConnectionInfo {
/** /**
* @property {string} SSID * @property {string} SSID
* The service set identifier (SSID) of the current 802.11 network. * The service set identifier (SSID) of the current 802.11 network.
@@ -1,7 +1,7 @@
/** /**
* @name HotspotDevice * @name HotspotDevice
*/ */
export class HotspotDevice { export interface HotspotDevice {
/** /**
* @property {string} ip * @property {string} ip
* Hotspot IP Address * Hotspot IP Address
@@ -1,7 +1,7 @@
/** /**
* @name ConnectionInfo * @name ConnectionInfo
*/ */
export class NetworkConfig { export interface NetworkConfig {
/** /**
* @property {string} deviceIPAddress - Device IP Address * @property {string} deviceIPAddress - Device IP Address
*/ */
+1 -1
View File
@@ -3,7 +3,7 @@
* @description * @description
* Based on [ScanResult](http://developer.android.com/reference/android/net/wifi/ScanResult.html) * Based on [ScanResult](http://developer.android.com/reference/android/net/wifi/ScanResult.html)
*/ */
export class Network { export interface Network {
/** /**
* @property {string} SSID * @property {string} SSID
* Human readable network name * Human readable network name