wasm-bindgen/examples/smorgasboard/awesome.js

15 lines
244 B
JavaScript
Raw Normal View History

2018-03-03 07:19:39 +03:00
export function bar_on_reset(s, token) {
console.log(token);
console.log(`this instance of bar was reset to ${s}`);
}
export class Awesome {
constructor() {
this.internal = 32;
}
get_internal() {
return this.internal;
}
}