@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
12 lines • 659 B
TypeScript
import { DeviceModel } from '../../../devices.model';
import { DeviceState } from '../../../states';
import { IceMakerStatusState } from './ice-maker.status';
export declare const MakingIceStateName: 'makeIce';
export type MakingIceStateName = typeof MakingIceStateName;
export declare class IceMakerMakingIceState extends DeviceState<MakingIceStateName, boolean | undefined> {
readonly statusState: IceMakerStatusState;
constructor(device: DeviceModel, statusState: IceMakerStatusState);
protected readonly stateToCommand: () => undefined;
setState(nextState: boolean | undefined): string[];
}
//# sourceMappingURL=ice-maker.make-ice.d.ts.map