| Server IP : 13.235.167.51 / Your IP : 216.73.217.116 Web Server : Apache System : Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/control.machinox.in/node_modules/next/dist/lib/ |
Upload File : |
/** * 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>;