matrix-js-sdk
    Preparing search index...

    Interface DeviceAccessTokenResponse

    Response from the OAuth2 token endpoint when exchanging a token for grant_type device_code.

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