mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
10 lines
420 B
Rust
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 {}
|