UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

10 lines (9 loc) 462 B
import { ICommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { TableCommandBase } from './table-command-base'; export declare class DeleteTableCellsWithShiftToTheVerticallyCommand extends TableCommandBase<SimpleCommandState> { getState(): SimpleCommandState; isEnabled(): boolean; executeCore(_state: SimpleCommandState, options: ICommandOptions): boolean; private removeTableCell; }