12 lines
186 B
TypeScript
12 lines
186 B
TypeScript
declare type HostSet = {
|
|
host_uuid: string;
|
|
};
|
|
|
|
declare type HostSetPower = HostSet & {
|
|
is_on: boolean;
|
|
};
|
|
|
|
declare type HostSetMembership = HostSet & {
|
|
is_membership: boolean;
|
|
};
|