Dec 6, 2012 at 10:56 AM
Edited Dec 6, 2012 at 4:20 PM
|
I just upgraded from TypeScript 0.8.0.0 to 0.8.1.1 and all of a sudden all my ts files have errors like
property 'MyProperty' of exported interface has or is using private type 'MyModule'
exported interface 'MyInterface; extends interface from private module 'MyModule'
exported class's constructor parameter 'myParameter' has or is using private type 'MyModule'
public function parameter 'myParameter' has or is using private type 'MyModule'
public member 'myMember' of exported class has or is using private type 'MyModule'
where MyModule refers to the identifier of an imported module like so:
import MyModule = module("MyModule");
this was not a problem with TypeScript 0.8.0.0. I have no idea how to fix it. Can anybody help please?
|