@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
9 lines • 421 B
TypeScript
import { ICommandHandler } from '@nestjs/cqrs';
import { IoTService } from '../../../../data';
import { IoTSubscribeCommand } from '../commands';
export declare class IoTSubscribeCommandHandler implements ICommandHandler<IoTSubscribeCommand, void> {
private readonly iot;
constructor(iot: IoTService);
execute(command: IoTSubscribeCommand): Promise<void>;
}
//# sourceMappingURL=iot-subscribe.handler.d.ts.map