2021-05-27 15:19:19 +00:00
|
|
|
declare type HostSet = {
|
2021-05-25 15:03:41 +00:00
|
|
|
host_uuid: string;
|
|
|
|
};
|
|
|
|
|
2021-05-27 15:19:19 +00:00
|
|
|
declare type HostSetPower = HostSet & {
|
2021-05-25 15:03:41 +00:00
|
|
|
is_on: boolean;
|
|
|
|
};
|
|
|
|
|
2021-05-27 15:19:19 +00:00
|
|
|
declare type HostSetMembership = HostSet & {
|
2021-05-25 15:03:41 +00:00
|
|
|
is_membership: boolean;
|
|
|
|
};
|