UNPKG

@reliverse/rse

Version:

@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power

8 lines (7 loc) 363 B
/** * Asks the user if they want to install dependencies and attempts to install them if confirmed. * @param cwd The current working directory * @returns true if dependencies are still missing (installation failed or user declined), * false if dependencies are now installed */ export declare function askInstallDeps(cwd: string): Promise<boolean>;