/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { RequestHandler } from "express"; /** * Express.js Middleware that binds AbortControllerContext to the request for its lifetime. * Within the request flow, `getGlobalAbortControllerContext().getAbortController()` can then be called * to get the abort controller for the request. * @internal */ export declare const bindAbortControllerContext: () => RequestHandler; //# sourceMappingURL=abortControllerContext.d.ts.map