ts-quiz— ~/quiz/levels.ts
tsc --watch● loading…
// tsc --watch · type-checking modules…
await load("quiz/levels.ts")
// streaming server components
◇ tsc 6.0.3 · compiling…UTF-8◇ scanning levels…
T = string mean in this generic?type Box<T = string> = { value: T };
const a: Box = { value: "hello" };
const b: Box<number> = { value: 42 };