UNPKG

hextaui

Version:

Build stunning websites effortlessly. HextaUI CLI tool to easily install components for Next.js, Vite, and Astro projects.

10 lines (9 loc) 358 B
export type FrameworkType = "nextjs" | "vite" | "astro" | "unknown"; export interface ProjectInfo { root: string; framework: FrameworkType; hasTypeScript: boolean; packageJson: any; } export declare function detectFramework(projectRoot: string): Promise<FrameworkType>; export declare function findProjectRoot(): Promise<ProjectInfo | null>;