UNPKG

hackages

Version:

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

10 lines (9 loc) 331 B
import { TechnologyConfig, Technology } from "../types/index.js"; export declare function detectTechnology(goal: string): { tech: string; extension: string; srcExt: string; detected: boolean; detectedTech?: Technology; }; export declare function getTechnologyConfig(selectedTech: Technology): TechnologyConfig;