zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
18 lines • 616 B
TypeScript
interface KeyValue {
[s: string]: any;
}
type SendPolicy = 'bulk' | 'queue' | 'immediate' | 'keep-payload' | 'keep-command' | 'keep-cmd-undiv';
type DeviceType = 'Coordinator' | 'Router' | 'EndDevice' | 'Unknown' | 'GreenPower';
type EntityType = DeviceType | 'Group';
interface DatabaseEntry {
id: number;
type: EntityType;
[s: string]: any;
}
interface GreenPowerDeviceJoinedPayload {
sourceID: number;
deviceID: number;
networkAddress: number;
}
export { KeyValue, DatabaseEntry, EntityType, DeviceType, GreenPowerDeviceJoinedPayload, SendPolicy };
//# sourceMappingURL=tstype.d.ts.map