13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
export interface device {
|
|
// --- Database Parameters ---
|
|
type: string
|
|
typeId: number
|
|
// --- HomeBridge Parameters ---
|
|
uniqueId: string
|
|
deviceName: string
|
|
// --- Extra Parameters ---
|
|
switchable: string
|
|
dimmable: string
|
|
detailedType: string
|
|
}
|