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>
7 lines
296 B
Text
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 {};
|