@brewww/authentication-service
Version:
Authenticator service for Brew projects.
13 lines (12 loc) • 702 B
TypeScript
import { UserService } from "../user/user.service";
import { OtpService } from "../otp/otp.service";
import { EventEmitter2 } from "@nestjs/event-emitter";
import { SendSignUpOtpPhoneRequest } from "./dto/send-sign-up-otp-phone-request.dto";
import { SendSignUpOtpPhoneResponse } from "./dto/send-sign-up-otp-phone-response.dto";
export declare class SendSignUpOtpPhoneController {
private readonly userService;
private readonly otpService;
private readonly eventEmitter;
constructor(userService: UserService, otpService: OtpService, eventEmitter: EventEmitter2);
sendSignUpOtpPhoneAsync(sendSignUpOtpPhoneRequest: SendSignUpOtpPhoneRequest): Promise<SendSignUpOtpPhoneResponse>;
}