UNPKG

zwave-js

Version:

Z-Wave driver written entirely in JavaScript/TypeScript

12 lines 326 B
import { Endpoint } from "../Endpoint.js"; export class ZWaveNodeBase extends Endpoint { /** * Whether the node should be kept awake when there are no pending messages. */ keepAwake = false; /** The ID of this node */ get id() { return this.nodeId; } } //# sourceMappingURL=00_Base.js.map