mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-06-22 13:11:43 +00:00
16 lines
554 B
TypeScript
16 lines
554 B
TypeScript
import type * as zhc from "zigbee-herdsman-converters";
|
|
export default class Group {
|
|
zh: zh.Group;
|
|
private resolveDevice;
|
|
get ID(): number;
|
|
get options(): GroupOptions;
|
|
get name(): string;
|
|
constructor(group: zh.Group, resolveDevice: (ieeeAddr: string) => Device | undefined);
|
|
ensureInSettings(): void;
|
|
hasMember(device: Device): boolean;
|
|
membersDevices(): Generator<Device>;
|
|
membersDefinitions(): zhc.Definition[];
|
|
isDevice(): this is Device;
|
|
isGroup(): this is Group;
|
|
}
|
|
//# sourceMappingURL=group.d.ts.map
|