Rocky_Mountain_Vending/.pnpm-store/v10/files/04/b1f7245dbd3e2bbcbb8d7f356f4c01b13360c7d4dd59cdd4a5fe6389d247eac6a9120d0b352bc33f522d482ca2c4f4496db0f3eeee4a3d650baceeeaa76cf9
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

22 lines
741 B
Text

/**
* Used in unit test.
* @ignore
*/
export declare function calcBackoffMs(attempt: number): number;
/**
* Recursively delete directory contents.
*
* This is used when cleaning the `distDir`, and is part of the critical path
* for starting the server, so we use synchronous file IO, as we're always
* blocked on it anyways.
*
* Despite using sync IO, the function signature is still `async` because we
* asynchronously perform retries.
*/
export declare function recursiveDeleteSyncWithAsyncRetries(
/** Directory to delete the contents of */
dir: string,
/** Exclude based on relative file path */
exclude?: RegExp,
/** Relative path to the directory being deleted, used for exclude */
previousPath?: string): Promise<void>;