hackages
Version:
CLI tool for learning software development concepts through test-driven development
11 lines (10 loc) • 374 B
TypeScript
import { LearningGoal } from "../types/index.js";
export declare function generateLearningExercise(learningGoal: LearningGoal): Promise<any>;
export declare function reviewCode({ topic, sourceFiles, skillLevel, technology }: {
topic: string;
sourceFiles: {
[filename: string]: string;
};
skillLevel: string;
technology: string;
}): Promise<any>;