@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) • 329 B
TypeScript
import { ConfigService } from "@nestjs/config";
declare const NestAuthFacebookGuard_base: import("@nestjs/passport").Type<import("@nestjs/passport").IAuthGuard>;
export declare class NestAuthFacebookGuard extends NestAuthFacebookGuard_base {
private configService;
constructor(configService: ConfigService);
}
export {};