react-utils - v1.0.31
    Preparing search index...

    Interface DecodedToken<T>

    Decoded JWT token structure

    interface DecodedToken<T extends User = User> {
        exp: number;
        iat: number;
        user: T;
    }

    Type Parameters

    • T extends User = User

      User type extending base User interface

    Index

    Properties

    Properties

    exp: number

    Expiration timestamp

    iat: number

    Issued at timestamp

    user: T

    User information