UNPKG

hackages

Version:

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

15 lines (14 loc) 662 B
import { TechnologyConfig, RepositoryTemplate } from "../types/index.js"; export declare function getAllTechnologies(): Promise<any>; export declare function getTechnologyConfig(tech: string): Promise<any>; /** * Get repository templates for different technologies * @returns Map of technology to repository template */ export declare function getRepositoryTemplates(): Record<string, RepositoryTemplate>; /** * Get technology configuration with repository templates * @param tech Technology name * @returns Technology configuration with repository information */ export declare function getTechnologyConfigWithRepository(tech: string): TechnologyConfig;