@JsType(namespace = "asdf")
public class Foo {
/**
* See {@link #baz}.
*/
public String bar;
public String baz;
}
The generated TS on bar should include a reference to asdf.Foo.baz, but instead we see asdf.baz
export namespace asdf {
export class Foo {
/**
* See {@link asdf.baz}.
*/
bar:string;
baz:string;
constructor();
}
}
The generated TS on
barshould include a reference toasdf.Foo.baz, but instead we seeasdf.baz