UNPKG

@hz-9/a5-authn

Version:

Authentication module for the @hz-9/a5-* series of repositories.

10 lines (9 loc) 470 B
import { A5AuthnLoginResDtoType } from '../../dtos'; import { A5AuthnUserPayloadBo } from '../../interfaces/auth'; import { A5AuthnPwdService } from './a5-authn-pwd.service'; import { A5AuthnPwdLoginReqDto } from './dtos/pwd.login.req.dto'; export declare class A5AuthnPwdController { private readonly service; constructor(service: A5AuthnPwdService); login(body: A5AuthnPwdLoginReqDto, userPayload: A5AuthnUserPayloadBo): Promise<A5AuthnLoginResDtoType>; }