UNPKG

lavva.exalushome.network

Version:

Library implementing communication and abstraction layers for network configuration API in ExalusHome system

16 lines (15 loc) 547 B
import { INetworkIpv4StaticConfig } from "lavva.exalushome/build/js/INetworkService"; export declare class NetworkConfigrurationStaticParams implements INetworkIpv4StaticConfig { private _ipAddress; private _subnetMask; private _defaultGateway; private _broadcast; get IpAddress(): string; set IpAddress(value: string); get SubnetMask(): string; set SubnetMask(value: string); get DefaultGateway(): string; set DefaultGateway(value: string); get Broadcast(): string; set Broadcast(value: string); }