Explore Library
Code QuizIntermediate

Value Inside a .d.ts File

Recognizing that declaration files describe types, not runtime values.

Codetypescript
// api.d.ts
export const config = {
  baseUrl: "https://api.example.com",
  timeout: 5000
};

What is the bug in this declaration file?