Explore Library
Code QuizIntermediate

Ambient const enum

Fixing a declared enum that should be a const enum for inlining.

Codetypescript
// values should be inlined at compile time
declare enum LogLevel {
  Debug,
  Info,
  Warn,
  Error
}

What is the bug given the stated goal of inlining values?