AniLink - v2.0.0
    Preparing search index...

    Interface AniListTokenResponse

    A successful AniList OAuth2 token response. refresh_token may be absent on refresh responses when AniList does not rotate the refresh token.

    interface AniListTokenResponse {
        access_token: string;
        expires_in: number;
        refresh_token?: string;
        token_type: string;
    }
    Index
    access_token: string

    The bearer token to pass to the AniLink constructor.

    expires_in: number

    Token lifetime in seconds.

    refresh_token?: string

    The refresh token, when AniList issues or rotates one.

    token_type: string

    The token type, typically Bearer.