import HttpClientResponse from '../httpClient/HttpClientResponse'; /** * The Response subclass returned by methods such as `AadHttpClient.fetch()`. * Class that extends HttpClientResponse adding additional functionality specific * to the AadHttpClient. * @public */ export default class AadHttpClientResponse extends HttpClientResponse { /** * Represents the time to fetch token in milliseconds . * @internal */ readonly _tokenFetchRequestTime: number; constructor(response: Response, tokenFetchRequestTime: number); } //# sourceMappingURL=AadHttpClientResponse.d.ts.map