Rocky_Mountain_Vending/.pnpm-store/v10/files/34/2b3cee8d02a7f80f03a329f02edea9aad18ae41dc6f1d8b39e8824920750152b0ffcf6a625f849b608ebd1322631717d8c902b08b240b3ecf1103ef351dc39
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

9 lines
500 B
Text

import React, { type JSX } from 'react';
import type { ClientTraceDataEntry } from '../lib/trace/tracer';
export declare function makeGetServerInsertedHTML({ polyfills, renderServerInsertedHTML, serverCapturedErrors, tracingMetadata, basePath, }: {
polyfills: JSX.IntrinsicElements['script'][];
renderServerInsertedHTML: () => React.ReactNode;
tracingMetadata: ClientTraceDataEntry[] | undefined;
serverCapturedErrors: Array<unknown>;
basePath: string;
}): () => Promise<string>;