Rocky_Mountain_Vending/.pnpm-store/v10/files/df/629e0101c6c96c8d8ecc248e1fc145ee7ee453a24d518aa353865705c7f3a13535105a679931fca1bc0347fe1d21f70a003ffbc648c99b5825b6c4c1a77dd6
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

24 lines
642 B
Text

/**
* Helper for identifying unknown union members during deserialization.
*/
export declare class UnionSerde {
private from;
private to;
private keys;
constructor(from: any, to: any);
/**
* Marks the key as being a known member.
* @param key - to mark.
*/
mark(key: string): void;
/**
* @returns whether only one key remains unmarked and nothing has been written,
* implying the object is a union.
*/
hasUnknown(): boolean;
/**
* Writes the unknown key-value pair, if present, into the $unknown property
* of the union object.
*/
writeUnknown(): void;
}