UNPKG

aoc-automation

Version:

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

10 lines (9 loc) 270 B
import prompts from "prompts"; declare enum AsciiOptions { INTERPRETED = 0, AS_IS = 1, CANCEL = 2 } declare const asciiPrompt: (part: 1 | 2) => Promise<prompts.Answers<"choice" | "replacement">>; export { AsciiOptions }; export default asciiPrompt;