Interface VincentJWT

Interface representing a decoded Vincent JWT

VincentJWT

interface VincentJWT {
    data: string;
    header: JWTHeader;
    payload: VincentJWTPayload;
    signature: string;
}

Hierarchy

Properties

data: string
header: JWTHeader

The payload of the JWT

signature: string