django-vue3-admin-web/node_modules/slate-history/dist/history.d.ts
2025-10-20 21:21:14 +08:00

16 lines
445 B
TypeScript

import { Operation } from 'slate';
/**
* `History` objects hold all of the operations that are applied to a value, so
* they can be undone or redone as necessary.
*/
export interface History {
redos: Operation[][];
undos: Operation[][];
}
export declare const History: {
/**
* Check if a value is a `History` object.
*/
isHistory(value: any): value is History;
};
//# sourceMappingURL=history.d.ts.map