delta.rs 277 B

12345
  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>;