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

View File

@ -1,7 +1,7 @@
/**
* @name ConnectionInfo
*/
export class ConnectionInfo {
export interface ConnectionInfo {
/**
* @property {string} SSID
* The service set identifier (SSID) of the current 802.11 network.

View File

@ -1,7 +1,7 @@
/**
* @name HotspotDevice
*/
export class HotspotDevice {
export interface HotspotDevice {
/**
* @property {string} ip
* Hotspot IP Address

View File

@ -1,7 +1,7 @@
/**
* @name ConnectionInfo
*/
export class NetworkConfig {
export interface NetworkConfig {
/**
* @property {string} deviceIPAddress - Device IP Address
*/

View File

@ -3,7 +3,7 @@
* @description
* Based on [ScanResult](http://developer.android.com/reference/android/net/wifi/ScanResult.html)
*/
export class Network {
export interface Network {
/**
* @property {string} SSID
* Human readable network name