mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-10-11 15:02:06 -06:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
|
export type VinculumPd7Device = {
|
||
|
client?: {
|
||
|
// User-defined device name
|
||
|
name?: string | null,
|
||
|
} | null,
|
||
|
id: number,
|
||
|
services?: any,
|
||
|
type?: {
|
||
|
type?: string | null,
|
||
|
subtype?: string | null,
|
||
|
} | null,
|
||
|
};
|