UNPKG

hackages

Version:

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

11 lines (10 loc) 398 B
import { LearningGoal } from "../types/index.js"; export declare function generateLearningExercise(learningGoal: LearningGoal, exerciseNumber: number): Promise<any>; export declare function reviewCode({ topic, sourceFiles, skillLevel, technology }: { topic: string; sourceFiles: { [filename: string]: string; }; skillLevel: string; technology: string; }): Promise<any>;