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