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