We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example the following java class
@TsInterface @TsName(namespace = "dh") public class HasEventHandling { @JsProperty(namespace = "dh.Client") public static final String EVENT_REQUEST_FAILED = "requestfailed"; }
will produce the following TS
export namespace dh { export interface HasEventHandling { get EVENT_REQUEST_FAILED():string; } }
we need to error out for TsInterface static members.
The text was updated successfully, but these errors were encountered:
Note that this might be related to the attempt to export the property to a different type, which we've agreed should be forbidden (at least for now).
Sorry, something went wrong.
vegegoku
No branches or pull requests
For example the following java class
will produce the following TS
we need to error out for TsInterface static members.
The text was updated successfully, but these errors were encountered: