@sprouted/create-vibes
Version:
Create a new Vibes monorepo
15 lines • 450 B
TypeScript
export interface CreateFeatureOptions {
name: string;
includeApi?: boolean;
includeUi?: boolean;
uiFramework?: 'react' | 'react-native';
features?: string[];
projectRoot?: string;
}
export declare class CreateFeatureCommand {
private engine;
constructor();
execute(options: CreateFeatureOptions): Promise<void>;
interactivePrompt(): Promise<CreateFeatureOptions>;
}
//# sourceMappingURL=create-feature.d.ts.map