mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-21 00:23:00 +08:00
Actually exporting an interface instead of a class
This commit is contained in:
parent
6f50138d9e
commit
b280c052c7
@ -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.
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @name HotspotDevice
|
||||
*/
|
||||
export class HotspotDevice {
|
||||
export interface HotspotDevice {
|
||||
/**
|
||||
* @property {string} ip
|
||||
* Hotspot IP Address
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @name ConnectionInfo
|
||||
*/
|
||||
export class NetworkConfig {
|
||||
export interface NetworkConfig {
|
||||
/**
|
||||
* @property {string} deviceIPAddress - Device IP Address
|
||||
*/
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user