????

Your IP : 3.128.247.220


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

import { AuthService } from './auth.service';
import * as express from 'express';
import { CredentialsDto } 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>>>;
    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>>>;
}