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