use organic::types::PostBlank; use serde::Deserialize; use serde::Serialize; use super::macros::to_wasm; #[derive(Serialize, Deserialize)] pub(crate) struct WasmStandardProperties { begin: Option, end: Option, contents_begin: Option, contents_end: Option, post_blank: Option, } to_wasm!(WasmStandardProperties, Document<'s>, original, document, { // foo todo!() });