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.
22 lines
533 B
Plaintext
22 lines
533 B
Plaintext
11 months ago
|
/**
|
||
|
* @description 文字颜色 FontColor
|
||
|
* @author lkw
|
||
|
*
|
||
|
*/
|
||
|
import DropListMenu from '../menu-constructors/DropListMenu';
|
||
|
import Editor from '../../editor/index';
|
||
|
import { MenuActive } from '../menu-constructors/Menu';
|
||
|
declare class FontColor extends DropListMenu implements MenuActive {
|
||
|
constructor(editor: Editor);
|
||
|
/**
|
||
|
* 执行命令
|
||
|
* @param value value
|
||
|
*/
|
||
|
command(value: string): void;
|
||
|
/**
|
||
|
* 尝试修改菜单激活状态
|
||
|
*/
|
||
|
tryChangeActive(): void;
|
||
|
}
|
||
|
export default FontColor;
|