Member Junction
    Preparing search index...

    OAuth2 token data with computed expiration

    interface OAuth2TokenData {
        accessToken: string;
        expiresAt: number;
        refreshToken?: string;
        scope?: string;
        tokenType?: string;
    }
    Index

    Properties

    accessToken: string
    expiresAt: number
    refreshToken?: string
    scope?: string
    tokenType?: string