You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@TsInterface
@JsType(namespace = "dh")//TODO instead make a factory method?
public class Foo {
@JsIgnore// correctly ignored
public BigIntegerWrapper(String value) {
}
// public, so should be exported
public String asString() {
return "blah";
}
}
results in
export interface Foo { }
instead of including non-static members
The text was updated successfully, but these errors were encountered:
results in
instead of including non-static members
The text was updated successfully, but these errors were encountered: