/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { RequestHandler } from "express"; /** * Express.js Middleware that binds TimeoutContext to the request for its lifetime. * Within the request flow, `getGlobalTimeoutContext().checkTimeout()` can then be called * strategically to terminate request processing early in case of timeout. * @internal */ export declare const bindTimeoutContext: (maxRequestDurationMs: number) => RequestHandler; //# sourceMappingURL=timeoutContext.d.ts.map