aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
9 lines (8 loc) • 337 B
TypeScript
import type { Setup, YearConfig } from "../types/common";
declare const renderGlobalYearInfo: (config: YearConfig) => {
badges: string;
results: string;
} | undefined;
declare const readmeMD: ({ language }: Setup, startCmd: string, installCmd: string) => string;
export { renderGlobalYearInfo };
export default readmeMD;