Rocky_Mountain_Vending/.pnpm-store/v10/files/09/92aceb9c2458111415cbeffafa8014ef606e5939995b5f6c04eed97bd9174691862bef7f3c6771a880eed948c7ef33eeb7292eb17cbdbff1c0cfaad6b23688
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

21 lines
573 B
Text

/**
* Serializes BigInt and NumericValue to JSON-number.
* @internal
*/
export declare class JsonReplacer {
/**
* Stores placeholder key to true serialized value lookup.
*/
private readonly values;
private counter;
private stage;
/**
* Creates a jsonReplacer function that reserves big integer and big decimal values
* for later replacement.
*/
createReplacer(): (key: string, value: unknown) => unknown;
/**
* Replaces placeholder keys with their true values.
*/
replaceInJson(json: string): string;
}