delta.rs 203 B

1234567
  1. use crate::{
  2. core::{Delta, DeltaBuilder},
  3. rich_text::RichTextAttributes,
  4. };
  5. pub type RichTextDelta = Delta<RichTextAttributes>;
  6. pub type RichTextDeltaBuilder = DeltaBuilder<RichTextAttributes>;