/** * @description clear style menu * @author wangfupeng */ import { IButtonMenu, IDomEditor } from '@wangeditor/core'; declare class ClearStyleMenu implements IButtonMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; getValue(editor: IDomEditor): string | boolean; isActive(editor: IDomEditor): boolean; isDisabled(editor: IDomEditor): boolean; /** * 执行命令 * @param editor editor * @param value 是否有 mark */ exec(editor: IDomEditor, value: string | boolean): void; } export default ClearStyleMenu;