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>
7 lines
353 B
Text
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);
|
|
}
|