UNPKG

@constructorfleet/ultimate-govee

Version:

Library for interacting with Govee devices written in Typescript.

12 lines 569 B
import { DeviceModel } from '../devices.model'; import { DeviceOpState } from './device.state'; export declare const UnknownStateName: 'unknown'; export type UnknownStateName<Identifier extends string> = `${typeof UnknownStateName}${Identifier}`; export type UnknownData = { codes?: number[]; }; export declare class UnknownState extends DeviceOpState<UnknownStateName<string>, UnknownData> { constructor(device: DeviceModel, opType?: number, ...identifier: number[]); parseOpCommand(opCommand: number[]): void; } //# sourceMappingURL=unknown.state.d.ts.map