有什么方法可以将wasm-bindgen的JsValue的TypeScript类型注释为更有意义的东西?

时间:2019-06-09 22:15:05

标签: typescript rust wasm-bindgen

我有一个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()
    }
}

0 个答案:

没有答案