UNPKG

579 BTypeScriptView Raw
1/**
2 * @description 字号 FontSize
3 * @author lkw
4 *
5 */
6import DropListMenu from '../menu-constructors/DropListMenu';
7import Editor from '../../editor/index';
8import { MenuActive } from '../menu-constructors/Menu';
9declare class FontSize extends DropListMenu implements MenuActive {
10 constructor(editor: Editor);
11 /**
12 * 执行命令
13 * @param value value
14 */
15 command(value: string): void;
16 /**
17 * 尝试修改菜单激活状态
18 * ?字号是否需要有激活状态这个操作?
19 */
20 tryChangeActive(): void;
21}
22export default FontSize;