devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 356 B
TypeScript
import { CommandBase, CommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { ICommandState } from '../i-command';
export declare class DeleteCommand extends CommandBase<SimpleCommandState> {
getState(): ICommandState;
executeCore(_state: ICommandState, options: CommandOptions): boolean;
}