Skip to main content

latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
76%
Published
4 months ago (0.1.18)
Package root>src>types.ts
export type Solution = string | number | undefined; export type InitConfig = { year: string; directory: string; }; interface PartConfig { solved: boolean; result?: Solution; tries: number; runtime?: number; } export interface DayConfig { part1: PartConfig; part2: PartConfig; } export interface AocConfig { year: string; days: Record<string, DayConfig>; prevSubmitTimestamp?: number; submitDelayMs?: number; }