@storm-software/cloudflare-tools
Version:
A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.
12 lines (9 loc) • 361 B
TypeScript
import { NodeHttpHandler } from '@smithy/node-http-handler';
import { HttpHandler } from '@smithy/protocol-http';
/**
* Create a HTTP handler with a 5-minute timeout
*
* @returns A NodeHttp2Handler instance with custom request and session timeouts
*/
declare function createHttpHandler(): HttpHandler<any> | NodeHttpHandler;
export { createHttpHandler };