Rocky_Mountain_Vending/.pnpm-store/v10/files/77/43d73ffd190ed4435107f25e46d20b72123af6fb30a8b0f55376b46f2be34dfc916f40548914b2b8c35ca4ddeb4588441425691766da91ff50991294c3d215
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

24 lines
1.1 KiB
Text

import type { RequestContext } from "@smithy/types";
import type { ConnectConfiguration } from "@smithy/types";
import type { ConnectionManager, ConnectionManagerConfiguration } from "@smithy/types";
import type { ClientHttp2Session } from "http2";
/**
* @public
*/
export declare class NodeHttp2ConnectionManager implements ConnectionManager<ClientHttp2Session> {
constructor(config: ConnectionManagerConfiguration);
private config;
private readonly sessionCache;
lease(requestContext: RequestContext, connectionConfiguration: ConnectConfiguration): ClientHttp2Session;
/**
* Delete a session from the connection pool.
* @param authority The authority of the session to delete.
* @param session The session to delete.
*/
deleteSession(authority: string, session: ClientHttp2Session): void;
release(requestContext: RequestContext, session: ClientHttp2Session): void;
destroy(): void;
setMaxConcurrentStreams(maxConcurrentStreams: number): void;
setDisableConcurrentStreams(disableConcurrentStreams: boolean): void;
private getUrlString;
}