UNPKG

zigbee-herdsman

Version:

An open source ZigBee gateway solution with node.js.

12 lines 325 B
/** * Buffer-oriented structure representing network configuration. */ export interface NetworkOptions { panId: number; extendedPanId: Buffer; channelList: number[]; networkKey: Buffer; networkKeyDistribute: boolean; hasDefaultExtendedPanId?: boolean; } //# sourceMappingURL=network-options.d.ts.map