@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
9 lines • 434 B
TypeScript
import { IQueryHandler } from '@nestjs/cqrs';
import { GetDeviceQuery } from '../queries/get-device.query';
import { DevicesService } from '../../devices.service';
export declare class GetDeviceQueryHandler implements IQueryHandler<GetDeviceQuery> {
private readonly deviceService;
constructor(deviceService: DevicesService);
execute(query: GetDeviceQuery): Promise<any>;
}
//# sourceMappingURL=get-device.handler.d.ts.map