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
Let's say I have the following method :
#[wasm_bindgen] pub fn update (some_url: &str) -> Self { // whatever }
How can I rename the argument some_url to, for example, someUrl for JS ?
some_url
someUrl
It's possible to do so with structs, functions name, why not arguments individually ? At least I did not find anything about it in the documentation.
Thanks you in advance !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Let's say I have the following method :
How can I rename the argument
some_url
to, for example,someUrl
for JS ?It's possible to do so with structs, functions name, why not arguments individually ?
At least I did not find anything about it in the documentation.
Thanks you in advance !
The text was updated successfully, but these errors were encountered: