UNPKG

hackages

Version:

CLI tool for learning software development concepts through test-driven development

7 lines (6 loc) 442 B
import { Technology, SkillLevel } from "../types/index.js"; export declare function promptForLearningGoal(): Promise<string>; export declare function promptForTechnology(goalIncludesTech: boolean, detectedTech?: string): Promise<Technology>; export declare function promptForSkillLevel(): Promise<SkillLevel>; export declare function promptForMotivation(): Promise<string>; export declare function promptForTimeCommitment(): Promise<string>;