@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
10 lines • 520 B
TypeScript
import { ICommandHandler } from '@nestjs/cqrs';
import { MqttService } from '../../../../common';
import { OpenAPISubscribeCommand } from '../commands';
import { OpenAPIMqttPacket } from '../../../../data';
export declare class OpenAPISubscribeCommandHandler implements ICommandHandler<OpenAPISubscribeCommand, void> {
private readonly mqtt;
constructor(mqtt: MqttService<OpenAPIMqttPacket>);
execute(command: OpenAPISubscribeCommand): Promise<void>;
}
//# sourceMappingURL=openapi-subscribe.handler.d.ts.map