@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
14 lines (13 loc) • 496 B
TypeScript
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> {
}