@brewww/authentication-service
Version:
Authenticator service for Brew projects.
11 lines (10 loc) • 529 B
TypeScript
import { ResetPasswordRequest } from "./dto/reset-password-request.dto";
import { ResetPasswordService } from "./reset-password.service";
import { OkResponse } from "../dto";
import { UserService } from "../user/user.service";
export declare class ResetPasswordController {
private readonly userService;
private readonly resetPasswordService;
constructor(userService: UserService, resetPasswordService: ResetPasswordService);
resetPasswordAsync(resetPasswordRequest: ResetPasswordRequest): Promise<OkResponse>;
}