import { Guid } from '@microsoft/sp-core-library'; import { HttpClientResponse } from '@microsoft/sp-http-base'; /** * The Response subclass returned by methods such as GraphHttpClient.fetch(). * * @remarks * This is a placeholder. In the future, additional GraphHttpClient-specific functionality * may be added to this class. * * @deprecated The GraphHttpClient class has been superceded by the MSGraphClient class. * @internal * @sealed */ export default class DEPRECATED_DO_NOT_USE_GraphHttpClientResponse extends HttpClientResponse { private _correlationId; constructor(response: Response); /** * @override */ clone(): DEPRECATED_DO_NOT_USE_GraphHttpClientResponse; /** * Returns the Graph API correlation ID. * * @returns the correlation ID, or undefined if the "request-id" header was not found. */ get correlationId(): Guid | undefined; } //# sourceMappingURL=DEPRECATED_DO_NOT_USE_GraphHttpClientResponse.d.ts.map