UNPKG

@omnia/fx-models

Version:
14 lines (13 loc) 476 B
import { ToolbarProperties } from "./ToolbarProperties"; import { EditorCommand } from "./EditorCommand"; import { EditorMenuBar } from "./EditorMenuBar"; export interface TextColorCommand extends EditorCommand { textcolor?: (option: { color: string; force?: boolean; }) => void; } export interface TextColorMenuBar extends EditorMenuBar<TextColorCommand> { } export interface TextColorToolbarProperties extends ToolbarProperties<TextColorCommand> { }