Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/53f2e2aaf03058f283d465d6de74b93a4a9fff2a8b2f8df303799f5aa2ab2c7d6b1a37715a9b8e9ffde9fe2192aab1db171ff2cec004773519c6078d7c57bf
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

7 lines
296 B
Text

declare const USE_CACHE_TIMEOUT_ERROR_CODE = "USE_CACHE_TIMEOUT";
export declare class UseCacheTimeoutError extends Error {
digest: typeof USE_CACHE_TIMEOUT_ERROR_CODE;
constructor();
}
export declare function isUseCacheTimeoutError(err: unknown): err is UseCacheTimeoutError;
export {};