2022-10-22 21:57:44 +08:00

10 lines
420 B
Rust

use crate::core::{AttributeHashMap, DeltaOperation, DeltaOperationBuilder, DeltaOperations};
pub type DeltaTextOperations = DeltaOperations<AttributeHashMap>;
pub type DeltaTextOperationBuilder = DeltaOperationBuilder<AttributeHashMap>;
pub type DeltaTextOperation = DeltaOperation<AttributeHashMap>;
// pub trait TextOperation2: Default + Debug + OperationTransform {}
//
// impl TextOperation2 for TextOperations {}