UNPKG

@microsoft/kiota-abstractions

Version:

Core abstractions for kiota generated libraries in TypeScript and JavaScript

20 lines 885 B
/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ import type { RequestOption } from "./requestOption.js"; import type { ResponseHandler } from "./responseHandler.js"; export declare const ResponseHandlerOptionKey = "ResponseHandlerOptionKey"; /** * Options to intercept the request from the main pipeline. */ export declare class ResponseHandlerOption implements RequestOption { /** * The response handler to be used when processing the response. */ responseHandler?: ResponseHandler; getKey(): string; } //# sourceMappingURL=responseHandlerOptions.d.ts.map