UNPKG

shellies-ds9

Version:

Handles communication with the next generation of Shelly devices

14 lines 420 B
import { Component } from './base'; import { Device } from '../devices'; export interface HtUiAttributes { } export interface HtUiConfig { temperature_unit: 'C' | 'F'; } /** * Handles the settings of a Plus H&T device's screen. */ export declare class HtUi extends Component<HtUiAttributes, HtUiConfig> implements HtUiAttributes { constructor(device: Device); } //# sourceMappingURL=ht-ui.d.ts.map