????

Your IP : 216.73.216.131


Current Path : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/auth/
Upload File :
Current File : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/auth/auth.controller.d.ts

import { AuthService } from './auth.service';
import * as express from 'express';
import { CredentialsDto, SigninDto } from './dto/credentials.dto';
export declare class AuthController {
    private readonly authService;
    constructor(authService: AuthService);
    login(credentials: CredentialsDto, res: express.Response): Promise<express.Response<any, Record<string, any>>>;
    signIn(credentials: SigninDto, res: express.Response): Promise<express.Response<any, Record<string, any>>>;
    logout(req: express.Request, res: express.Response): Promise<express.Response<any, Record<string, any>>>;
    refreshAccessToken(req: express.Request, res: express.Response): Promise<express.Response<any, Record<string, any>>>;
}