1 2 3 4 5 6 7 8
use crate::bridge::ChainedCommands; use wasm_bindgen::prelude::wasm_bindgen; #[wasm_bindgen] extern "C" { #[wasm_bindgen(method, js_name = toggleItalic)] pub fn toggle_italic(this: &ChainedCommands) -> ChainedCommands; }