Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/df52a5e625c77fa931e5e349eede22079d7d4e68d3e1a2b502722db9e441862e6852509fa0453f3f1b8d833ff71335c49392ba8beaadf591abeab0784c11bf
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
288 B
Text

export declare namespace errorUtil {
type ErrMessage = string | {
message?: string;
};
const errToObj: (message?: ErrMessage | undefined) => {
message?: string | undefined;
};
const toString: (message?: ErrMessage | undefined) => string | undefined;
}