/** * @description 两端对齐 * @author wangfupeng */ import { IDomEditor } from '@wangeditor/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;