JwtPayload type
Home > @cbnsndwch/zrocket-contracts > JwtPayload
JwtPayload type
Claims contained in the JSON Web Token we issue to our authenticated users
Signature:
type JwtPayload = {
sub: string;
iat?: number;
exp?: number;
name?: string;
preferred_username?: string;
email: string;
picture?: string;
roles?: string[];
};How was this page?