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