return_description
and param_description
Descriptions to return and parameter documentation can be added with #[wasm_bindgen(return_description)]
and #[wasm_bindgen(param_description)]
.
Which will generate the following JS bindings:
/**
* Adds `arg1` and `arg2`.
*
* @param {number} arg1 - the first number
* @param {number} arg2 - the second number
* @returns {number} the result of the addition of `arg1` and `arg2`
*/
export function add(arg1, arg2) {
// ...
}
export class FooList {
/**
* Returns the number at the given index.
*
* @param {number} index - the index of the number to be returned
* @returns {number} the number at the given index
*/
number(index) {
// ...
}
}