@brewww/authentication-service
Version:
Authenticator service for Brew projects.
12 lines (11 loc) • 607 B
TypeScript
import { UserService } from "../user/user.service";
import { SendSignUpOtpEmailResponse, SendSignUpOtpEmailRequest } from "./dto";
import { OtpService } from "../otp/otp.service";
import { EventEmitter2 } from "@nestjs/event-emitter";
export declare class SendSignUpOtpEmailController {
private readonly userService;
private readonly otpService;
private readonly eventEmitter;
constructor(userService: UserService, otpService: OtpService, eventEmitter: EventEmitter2);
sendSignUpOtpEmailAsync(sendSignUpOtpEmailRequest: SendSignUpOtpEmailRequest): Promise<SendSignUpOtpEmailResponse>;
}