import { ToolbarProperties } from "./ToolbarProperties"; import { EditorCommand } from "./EditorCommand"; import { EditorMenuBar } from "./EditorMenuBar"; export interface AlignmentOption { textAlign: string; } export interface AlignmentCommand extends EditorCommand { alignment?: (option: AlignmentOption) => void; } export interface AlignmentMenuBar extends EditorMenuBar { } export interface AlignmentToolbarProperties extends ToolbarProperties { }