Files
cartlog-admin/node_modules/jodit/esm/plugins/redo-undo/redo-undo.d.ts
2026-01-01 15:25:19 +05:30

22 lines
677 B
TypeScript

/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* [[include:plugins/redo-undo/README.md]]
* @packageDocumentation
* @module plugins/redo-undo
*/
import type { IJodit, IPlugin } from "../../types/index";
import { Plugin } from "../../core/plugin/plugin";
/**
* Custom process Redo and Undo functionality
*/
export declare class redoUndo extends Plugin {
/** @override */
buttons: IPlugin['buttons'];
protected beforeDestruct(): void;
protected afterInit(editor: IJodit): void;
}