UNPKG

advent-of-code-client

Version:

A NodeJS client for fetching inputs, running puzzle challenges and submitting answers to Advent Of Code directly from your JavaScript code.

9 lines (8 loc) 220 B
declare const logger: { log: (...args: any[]) => void; debug: (...args: any[]) => void; error: (...args: any[]) => void; success: (...args: any[]) => void; fail: () => void; }; export default logger;