setup-next-project
Version:
CLI to quickly create a pre-configured Next.js project with modular components and features
13 lines • 506 B
TypeScript
export interface Component {
id: string;
name: string;
description: string;
dependencies?: string[];
devDependencies?: string[];
targetPath: string;
}
export declare const AVAILABLE_COMPONENTS: Component[];
export declare function getComponentContent(componentId: string): Promise<string | null>;
export declare function getComponent(componentId: string): Component | undefined;
export declare function getAvailableComponents(): Component[];
//# sourceMappingURL=components.d.ts.map