UNPKG

@brewww/authentication-service

Version:
13 lines (12 loc) 702 B
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>; }