UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

11 lines (10 loc) 190 B
declare const getDayData: () => { year: null; day: null; inputFile: null; } | { year: number; day: number; inputFile: string; }; export default getDayData;