@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
13 lines (12 loc) • 508 B
TypeScript
import type { RseConfig } from "@reliverse/cfg";
export type MainMenuChoice = "create" | "clone" | "detected-projects" | "isDevTools" | "native-cli" | "manual" | "exit" | "ai" | "web-ui";
interface MainMenuOption {
label: string;
value: MainMenuChoice;
hint?: string;
}
/**
* Builds the main menu options based on dev mode, multi-rsegs, detected projects, etc.
*/
export declare function getMainMenuOptions(cwd: string, isDev: boolean, mrse: RseConfig[]): Promise<MainMenuOption[]>;
export {};