Rocky_Mountain_Vending/.pnpm-store/v10/files/fd/7b660ed5f2e3e86792e1efdb7e34eb2beb92ad222eb0aabc5d2344b0d457397482265a7abaaa681581835ddb41492db7c8cc8e053eae3fcb650b4cbb48c14a
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

17 lines
No EOL
390 B
Text

/**
* An interface describing a user of an application or a handled request.
*/
export interface User {
[key: string]: any;
id?: string | number;
ip_address?: string | null;
email?: string;
username?: string;
geo?: GeoLocation;
}
export interface GeoLocation {
country_code?: string;
region?: string;
city?: string;
}
//# sourceMappingURL=user.d.ts.map