UNPKG

@brewww/authentication-service

Version:
13 lines (12 loc) 691 B
import { UserService } from "../user/user.service"; import { OtpService } from "../otp/otp.service"; import { EventEmitter2 } from "@nestjs/event-emitter"; import { SendLoginOtpPhoneRequest } from "./dto/send-login-otp-phone-request.dto"; import { SendLoginOtpPhoneResponse } from "./dto/send-login-otp-phone-response.dto"; export declare class SendLoginOtpPhoneController { private readonly userService; private readonly otpService; private readonly eventEmitter; constructor(userService: UserService, otpService: OtpService, eventEmitter: EventEmitter2); sendLoginOtpPhoneAsync(sendLoginOtpPhoneRequest: SendLoginOtpPhoneRequest): Promise<SendLoginOtpPhoneResponse>; }