6 lines
224 B
Rust
Raw Normal View History

2022-09-13 11:38:19 +08:00
use crate::core::{Attributes, Operation, OperationBuilder, Operations};
2022-09-12 10:44:33 +08:00
2022-09-13 11:38:19 +08:00
pub type TextDelta = Operations<Attributes>;
pub type TextDeltaBuilder = OperationBuilder<Attributes>;
pub type TextOperation = Operation<Attributes>;