我有一个 Rust / Wasm 函数,我正在为使用 wasm_bindgen 生成 TypeScript 绑定。的输出类型JsValue
是any
。有没有办法在不编辑自动生成的情况下手动将类型注释为更有意义的东西*.d.ts
?
#[wasm_bindgen]
impl GameClient {
pub fn game_list(&self) -> JsValue {
JsValue::from_serde(&self.game_list).unwrap()
}
}