Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/93de70be27b535e63d771b78ad94bd221ba3146bbe643eaa5b1d40939340a47d5f410dea2840d272f46f235cc87ee707caccd63c0c7299697fe81083db7235
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

7 lines
353 B
Text

import RenderResult, { type RenderResultMetadata } from '../render-result';
/**
* Flight Response is always set to RSC_CONTENT_TYPE_HEADER to ensure it does not get interpreted as HTML.
*/
export declare class FlightRenderResult extends RenderResult {
constructor(response: string | ReadableStream<Uint8Array>, metadata?: RenderResultMetadata);
}