UNPKG

@constructorfleet/ultimate-govee

Version:

Library for interacting with Govee devices written in Typescript.

11 lines 482 B
import { IQueryHandler } from '@nestjs/cqrs'; import { AuthDataQuery } from '../queries/auth-data.query'; import { AuthService } from '../auth.service'; import { AuthState } from '../auth.state'; export declare class AuthDataQueryHandler implements IQueryHandler<AuthDataQuery> { private readonly authService; private readonly logger; constructor(authService: AuthService); execute(): Promise<AuthState | undefined>; } //# sourceMappingURL=auth-data.handler.d.ts.map