UNPKG

nestjs-auth-kit

Version:

A modular and flexible authentication kit for NestJS with JWT, social login, OTP, and password reset.

15 lines (14 loc) 296 B
export interface AuthOptions { jwtSecret: string; jwtExpiration: string; socialAuth: { google: { clientId: string; clientSecret: string; }; facebook: { clientId: string; clientSecret: string; }; }; }