TS2656

error TS2656: Exported external package typings file ‘../proteus.d.ts‘ is not a module. Please contact the package author to update the package definition.

Broken Code ❌

proteus.d.ts
1
2
declare module Proteus {
}

Fixed Code ✔️

proteus.d.ts
1
2
export module Proteus {
}