Rocky_Mountain_Vending/.pnpm-store/v10/files/9b/83236858f90ae5f1e9f19eed5e28c6d1b2a8f85ebe67b1bbd69b5fc20559a23d6b0007e658a179b29e593d0c2b57341da4abc5f9948bb94bce8fc53d0ce813
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

6 lines
281 B
Text

/**
* A drop-in replacement for `fs.rename` that:
* - allows to move across multiple disks
* - attempts to retry the operation for certain error codes on Windows
*/
export declare function renameSync(source: string, target: string, windowsRetryTimeout?: number | false): void;