|
Hi,
After installing verison 0.8.1.1 of Typescript I am receiving the following error:
"exported function parameter has or is using private type 'vs'"
In version 0.8.1 I had no problem. To the is like this:
import vs = module("app/framework/ViewStack");
export module Framework {
public static addViewStack( id: string, idContainer: string,
idParentContainer: string, idLoadingPanel:
string, loaded: bool ): vs.Framework.ViewStack {
}
The error is marked in the vs.Framework.ViewStack return type of addViewStack..
How can I solve this problem. My code has a lot of function declared like this.
Thanks in advance
|