UNPKG

@omnia/fx-models

Version:
14 lines (13 loc) 496 B
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<AlignmentCommand> { } export interface AlignmentToolbarProperties extends ToolbarProperties<AlignmentCommand> { }