@iotize/tap
Version:
IoTize Device client for Javascript
40 lines (39 loc) • 1.79 kB
TypeScript
/**
* Generated file. Do not edit
*/
import { WifiMode } from './models';
import { WifiProtocol } from './models';
import { WifiSSIDVisibility } from './models';
import { WifiKeyVisibility } from './models';
import { ServiceCallType } from '@iotize/tap';
export declare const SERVICE_CALLS: {
getMode: ServiceCallType<void, WifiMode>;
putMode: ServiceCallType<WifiMode, void>;
getKey: ServiceCallType<void, string>;
putKey: ServiceCallType<string, void>;
getHostname: ServiceCallType<void, string>;
getIp: ServiceCallType<void, string>;
putIp: ServiceCallType<string, void>;
getGatewayIp: ServiceCallType<void, string>;
putGatewayIp: ServiceCallType<string, void>;
getIpMask: ServiceCallType<void, string>;
putIpMask: ServiceCallType<string, void>;
getDnsIp: ServiceCallType<void, string>;
putDnsIp: ServiceCallType<string, void>;
getSSID: ServiceCallType<void, string>;
putSSID: ServiceCallType<string, void>;
getCountryCode: ServiceCallType<void, number>;
putCountryCode: ServiceCallType<number, void>;
getProtocol: ServiceCallType<void, WifiProtocol>;
putProtocol: ServiceCallType<WifiProtocol[], void>;
getTxPower: ServiceCallType<void, number>;
putTxPower: ServiceCallType<number, void>;
getSSIDVisibility: ServiceCallType<void, WifiSSIDVisibility>;
putSSIDVisibility: ServiceCallType<WifiSSIDVisibility, void>;
getKeyVisibility: ServiceCallType<void, WifiKeyVisibility>;
putKeyVisibility: ServiceCallType<WifiKeyVisibility, void>;
getNetworkMode: ServiceCallType<void, WifiMode>;
putNetworkMode: ServiceCallType<WifiMode, void>;
getDisabled: ServiceCallType<void, boolean>;
putDisabled: ServiceCallType<boolean, void>;
};