UNPKG

zwave-js

Version:

Z-Wave driver written entirely in JavaScript/TypeScript

10 lines 459 B
import { BasicDeviceClass, type GenericDeviceClass, type SpecificDeviceClass } from "@zwave-js/core"; import { type JSONObject } from "@zwave-js/shared"; export declare class DeviceClass { constructor(basic: BasicDeviceClass, generic: number, specific: number); readonly basic: BasicDeviceClass; readonly generic: GenericDeviceClass; readonly specific: SpecificDeviceClass; toJSON(): JSONObject; } //# sourceMappingURL=DeviceClass.d.ts.map