????

Your IP : 3.148.240.165


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.guard.d.ts

import { CanActivate, ExecutionContext } from '@nestjs/common';
import { JwtService } from '@nestjs/jwt';
import { ConfigService } from '@nestjs/config';
import { TokenService } from './token.service';
import { UsersService } from '../users';
export declare class AuthGuard implements CanActivate {
    private jwtService;
    private tokenService;
    private configService;
    private userService;
    constructor(jwtService: JwtService, tokenService: TokenService, configService: ConfigService, userService: UsersService);
    canActivate(context: ExecutionContext): Promise<boolean>;
}