Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/eecced039f054f7d384bf26ad14a2f15cd9bed792d810ef278e407db442c10240ec95d2cad79884deff4971dc5cd9e197f6d53a9b9e49d7c30b16b578226f5
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

12 lines
597 B
Text

import type { IncomingMessage, ServerResponse } from 'http';
import type RenderResult from './render-result';
import type { CacheControl } from './lib/cache-control';
export declare function sendEtagResponse(req: IncomingMessage, res: ServerResponse, etag: string | undefined): boolean;
export declare function sendRenderResult({ req, res, result, generateEtags, poweredByHeader, cacheControl, }: {
req: IncomingMessage;
res: ServerResponse;
result: RenderResult;
generateEtags: boolean;
poweredByHeader: boolean;
cacheControl: CacheControl | undefined;
}): Promise<void>;