UNPKG

matterbridge-dyson-robot

Version:

A Matterbridge plugin that connects Dyson robot vacuums and air treatment devices to the Matter smart home ecosystem via their local or cloud MQTT APIs.

16 lines 694 B
import { CheckerT, ICheckerSuite, ITypeSuite, TType } from 'ts-interface-checker'; import { DysonAirProductState, DysonAirProductStateChange } from '../dyson-air-state-types.js'; export interface TypeMap { DysonAirProductState: DysonAirProductState; DysonAirProductStateChange: DysonAirProductStateChange; } export declare const typeSuite: ITypeSuite & { DysonAirProductState: TType; DysonAirProductStateChange: TType; }; export declare const checkers: ICheckerSuite & { DysonAirProductState: CheckerT<DysonAirProductState>; DysonAirProductStateChange: CheckerT<DysonAirProductStateChange>; }; export default checkers; //# sourceMappingURL=dyson-air-state-types.d.ts.map