devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 589 B
TypeScript
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
import { CommandBase, CommandOptions, ICommandOptions } from '../command-base';
import { IntervalCommandStateEx } from '../command-states';
export declare class ClearFormattingCommand extends CommandBase<IntervalCommandStateEx> {
getActualIntervals(): FixedInterval[];
getState(): IntervalCommandStateEx;
protected DEPRECATEDCorrectlMainCommandOptions(options: ICommandOptions): void;
executeCore(_state: IntervalCommandStateEx, options: CommandOptions): boolean;
isEnabled(): boolean;
}