mirror of
https://github.com/rm-dr/daisy
synced 2025-07-01 14:43:30 -07:00
Added wasm implementations for formattedtext
This commit is contained in:
12
src/formattedtext/wasm_backend.rs
Normal file
12
src/formattedtext/wasm_backend.rs
Normal file
@ -0,0 +1,12 @@
|
||||
use super::FormattedText;
|
||||
|
||||
impl FormattedText {
|
||||
pub fn newline() -> Result<(), ()> {
|
||||
print!("\n");
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
pub fn write(&self) -> String {
|
||||
return self.text.clone();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user