@microsoft/microsoft-graph-client
Version:
Microsoft Graph Client Library
27 lines (26 loc) • 860 B
TypeScript
/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
/**
* @module HTTPMessageHandler
*/
import { Context } from "../IContext";
import { Middleware } from "./IMiddleware";
/**
* @class
* @implements Middleware
* Class for HTTPMessageHandler
*/
export declare class HTTPMessageHandler implements Middleware {
/**
* @public
* @async
* To execute the current middleware
* @param {Context} context - The request context object
* @returns A promise that resolves to nothing
*/
execute(context: Context): Promise<void>;
}