Rocky_Mountain_Vending/.pnpm-store/v10/files/14/bf362eac3e8dbf399ee2e1fd58a62fcbb2371f711c94d3cd38b046dc3e7d99828692a63c196fec051c36abb252ee03d09ba3652bbfdd183cf1d2a9ec9c5c76
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
616 B
Text

export declare const safeStringifyWithDepth: typeof import("safe-stable-stringify").stringify;
/**
* allows us to:
* - revive the undefined log in the server as it would look in the browser
* - not read/attempt to serialize promises (next will console error if you do that, and will cause this program to infinitely recurse)
* - if we read a proxy that throws (no way to detect if something is a proxy), explain to the user we can't read this data
*/
export declare function preLogSerializationClone<T>(value: T, seen?: WeakMap<WeakKey, any>): any;
export declare const logStringify: (data: unknown) => string;