zibri
    Preparing search index...

    Type Alias JwtRefreshTokenPayload<Role, T>

    The payload of the jwt refresh token.

    type JwtRefreshTokenPayload<Role extends string, T extends BaseUser<Role>> = {
        userId: T["id"];
    }

    Type Parameters

    Index

    Properties

    Properties

    userId: T["id"]

    The id of the user that this refresh token belongs to.