/** * @description 两端对齐 * @author wangfupeng */ import { IDomEditor } from '@wangeditor-next/core'; import BaseMenu from './BaseMenu'; declare class JustifyJustifyMenu extends BaseMenu { readonly title: string; readonly iconSvg = ""; exec(editor: IDomEditor, _value: string | boolean): void; } export default JustifyJustifyMenu;