delta.rs 420 B

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