You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
459 B
Plaintext
20 lines
459 B
Plaintext
/**
|
|
* @description 撤销
|
|
* @author tonghan
|
|
*/
|
|
import Editor from '../../editor/index';
|
|
import BtnMenu from '../menu-constructors/BtnMenu';
|
|
import { MenuActive } from '../menu-constructors/Menu';
|
|
declare class Undo extends BtnMenu implements MenuActive {
|
|
constructor(editor: Editor);
|
|
/**
|
|
* 点击事件
|
|
*/
|
|
clickHandler(): void;
|
|
/**
|
|
* 尝试修改菜单激活状态
|
|
*/
|
|
tryChangeActive(): void;
|
|
}
|
|
export default Undo;
|