import { ICommandHandler } from '@nestjs/cqrs'; import { SetCredentialsCommand } from '../commands'; import { AuthService } from '../auth.service'; export declare class SetCredentialsCommandHandler implements ICommandHandler { private readonly authService; constructor(authService: AuthService); execute(command: SetCredentialsCommand): Promise; } //# sourceMappingURL=set-credentials.handler.d.ts.map