UNPKG

homebridge-aeg-robot

Version:

AEG RX9 / Electrolux Pure i9 robot vacuum plugin for Homebridge

22 lines 740 B
import { CheckerT, ICheckerSuite, ITypeSuite, TType } from 'ts-interface-checker'; import { PollIntervals, HideService, DebugFeatures, Config } from '../config-types.js'; export interface TypeMap { PollIntervals: PollIntervals; HideService: HideService; DebugFeatures: DebugFeatures; Config: Config; } export declare const typeSuite: ITypeSuite & { PollIntervals: TType; HideService: TType; DebugFeatures: TType; Config: TType; }; export declare const checkers: ICheckerSuite & { PollIntervals: CheckerT<PollIntervals>; HideService: CheckerT<HideService>; DebugFeatures: CheckerT<DebugFeatures>; Config: CheckerT<Config>; }; export default checkers; //# sourceMappingURL=config-types.d.ts.map