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) 556 B
export * from './auth.module'; export * from './auth.service'; export * from './auth.controller'; export * from './strategies/jwt.strategy'; export * from './strategies/google.strategy'; export * from './strategies/facebook.strategy'; export * from './guards/jwt-auth.guard'; export * from './guards/roles.guard'; export * from './decorators/roles.decorator'; export * from './dto/login.dto'; export * from './dto/register.dto'; export * from './dto/otp.dto'; export * from './dto/forgot-password.dto'; export * from './interfaces/auth-options.interface';