aboutsummaryrefslogtreecommitdiff
path: root/src/lib/config/devices.types.ts
blob: d960f7efc177cbd5dc1bb2031cd10e16b9ef14ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// ~~~ device config types
//

// individual device configs
export interface DeviceConfig {
    name: string,
    mqtt: string
}

// global device config
export default interface DevicesConfig {
    [ index: string ]: DeviceConfig
}