@wordpress/undo-manager
Version:
A small package to manage undo/redo.
11 lines • 405 B
TypeScript
/**
* Creates an undo manager.
*
* @return {UndoManager} Undo manager.
*/
export function createUndoManager(): UndoManager;
export type HistoryRecord = import("./types").HistoryRecord;
export type HistoryChange = import("./types").HistoryChange;
export type HistoryChanges = import("./types").HistoryChanges;
export type UndoManager = import("./types").UndoManager;
//# sourceMappingURL=index.d.ts.map