zibri
    Preparing search index...

    An encoded jwt access token.

    type EncodedJwtAccessToken<Role extends string> = {
        header: JwtHeader;
        payload: JwtAccessTokenPayload<Role, BaseUser<Role>>;
        signature: string;
    }

    Type Parameters

    • Role extends string
    Index

    Properties

    header: JwtHeader

    The header of the jwt, contains mostly metadata.

    The payload of the jwt, everything that was put inside the token when generating it can be found here.

    signature: string

    The signature of the jwt.