UNPKG

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

Version:

Easy and quick authentication integration for beginner dev projects

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