@next-nest-auth/nestauth
Version:
NestAuth is an authentication solution for NestJS applications, designed to handle user login, session management, and token-based authentication (JWT). It integrates seamlessly with Next.js and other frontends to provide a unified authentication system,
8 lines (7 loc) • 323 B
TypeScript
import { ConfigService } from "@nestjs/config";
declare const NestAuthGoogleGuard_base: import("@nestjs/passport").Type<import("@nestjs/passport").IAuthGuard>;
export declare class NestAuthGoogleGuard extends NestAuthGoogleGuard_base {
private configService;
constructor(configService: ConfigService);
}
export {};