/** * @description blockquote menu class * @author wangfupeng */ import { IButtonMenu, IDomEditor } from '@wangeditor-next/core'; declare class BlockquoteMenu 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 node.type */ exec(editor: IDomEditor, _value: string | boolean): void; } export default BlockquoteMenu;