UNPKG

@aditya-garg-09-01-2002/q-auth

Version:

Easy and quick authentication integration for beginner dev projects

9 lines (8 loc) 213 B
import { JwtPayload } from "jsonwebtoken"; export interface SessionJwtPayload extends JwtPayload { sessionID: string; } export interface UserJwtPayload extends JwtPayload { id: string; name: string; }