Rocky_Mountain_Vending/.pnpm-store/v10/files/4b/8e1f2a146942e53cd68fb7d17394bb097e6cf67f89d06b3720a1be9bfd9e7bb3b32de1a697eb7361973e15b3592b5f673b83f7b28404c02aca481f82eb7386
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
542 B
Text

/** Monitor when the consumer finishes reading the response body.
that's as close as we can get to `res.on('close')` using web APIs.
*/
export declare function trackBodyConsumed(body: string | ReadableStream, onEnd: () => void): BodyInit;
export declare function trackStreamConsumed<TChunk>(stream: ReadableStream<TChunk>, onEnd: () => void): ReadableStream<TChunk>;
export declare class CloseController {
private target;
listeners: number;
isClosed: boolean;
onClose(callback: () => void): void;
dispatchClose(): void;
}