delta.rs 395 B

123456789
  1. use crate::core::{AttributeHashMap, DeltaOperation, DeltaOperations, OperationBuilder};
  2. pub type TextOperations = DeltaOperations<AttributeHashMap>;
  3. pub type TextOperationBuilder = OperationBuilder<AttributeHashMap>;
  4. pub type TextOperation = DeltaOperation<AttributeHashMap>;
  5. // pub trait TextOperation2: Default + Debug + OperationTransform {}
  6. //
  7. // impl TextOperation2 for TextOperations {}