UNPKG

zigbee-herdsman

Version:

An open source ZigBee gateway solution with node.js.

18 lines 581 B
export interface KeyValue { [s: string]: any; } export type SendPolicy = "bulk" | "queue" | "immediate" | "keep-payload" | "keep-command" | "keep-cmd-undiv"; export type DeviceType = "Coordinator" | "Router" | "EndDevice" | "Unknown" | "GreenPower"; export type EntityType = DeviceType | "Group"; export interface DatabaseEntry { id: number; type: EntityType; [s: string]: any; } export interface GreenPowerDeviceJoinedPayload { sourceID: number; deviceID: number; networkAddress: number; securityKey?: Buffer; } //# sourceMappingURL=tstype.d.ts.map