tiptap-rs 0.1.2

WASM bindings for Tiptap
Documentation
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 = toggleOrderedList)]
    pub fn toggle_ordered_list(this: &ChainedCommands) -> ChainedCommands;
}