Rocky_Mountain_Vending/.pnpm-store/v10/files/a7/3394ccbb46e62c9b71049d5619b0002231150c65a03b4079ef245b7054126cf643ae7223bed1d9bae948ceca88eb78495d3837c026a664c82af2033ddaaca4
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

8 lines
No EOL
220 B
Text

import type { Attachment } from '../attachment';
export type FeedbackFormData = {
name: string;
email: string;
message: string;
attachments: Attachment[] | undefined;
};
//# sourceMappingURL=form.d.ts.map