Rocky_Mountain_Vending/.pnpm-store/v10/files/40/8eb3325094875101d7a0e6b233b6706ad581fc554434a62ac17f61f00325aa1da206c3d55f6c78ffdaf08df3e70711c8291025b9c527eb604929569bca8e3b
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

18 lines
1.2 KiB
Text

import type { ClientReferenceManifest } from '../../build/webpack/plugins/flight-manifest-plugin';
import type { BinaryStreamOf } from './app-render';
import type { DeepReadonly } from '../../shared/lib/deep-readonly';
/**
* Render Flight stream.
* This is only used for renderToHTML, the Flight response does not need additional wrappers.
*/
export declare function useFlightStream<T>(flightStream: BinaryStreamOf<T>, debugStream: ReadableStream<Uint8Array> | undefined, clientReferenceManifest: DeepReadonly<ClientReferenceManifest>, nonce: string | undefined): Promise<T>;
/**
* Creates a ReadableStream provides inline script tag chunks for writing hydration
* data to the client outside the React render itself.
*
* @param flightStream The RSC render stream
* @param nonce optionally a nonce used during this particular render
* @param formState optionally the formState used with this particular render
* @returns a ReadableStream without the complete property. This signifies a lazy ReadableStream
*/
export declare function createInlinedDataReadableStream(flightStream: ReadableStream<Uint8Array>, nonce: string | undefined, formState: unknown | null): ReadableStream<Uint8Array>;