1 2 3 4 5 6 7 8 9import { UserRoleType } from 'src/entities/Users'; export interface JwtPayload { id: number; email: string; nickname: string; role: UserRoleType; }
1 2 3 4 5 6 7 8 9
import { UserRoleType } from 'src/entities/Users'; export interface JwtPayload { id: number; email: string; nickname: string; role: UserRoleType; }