History
export interface History {
redos: Batch[]
undos: Batch[]
}
interface Batch {
operations: Operation[]
selectionBefore: Range | null
}Static Methods
History.isHistory(value: any): value is History
History.isHistory(value: any): value is HistoryLast updated