TS1046
Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.
Broken Code ❌
const MAGIC_NUMBER = 1337;Fixed Code ✔️
If you want to export a constant from a declaration file (d.ts), then you have to use the export modifier:
export const MAGIC_NUMBER = 1337;