devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 555 B
TypeScript
import { NumberingType } from '../../model/numbering-lists/numbering-list';
import { CommandOptions } from '../command-base';
import { IntervalCommandStateEx } from '../command-states';
import { NumberingListCommandBase } from './numbering-list-command-base';
export declare class DeleteNumerationFromParagraphsCommand extends NumberingListCommandBase {
getState(options?: CommandOptions): IntervalCommandStateEx;
executeCore(_state: IntervalCommandStateEx, options: CommandOptions): boolean;
getNumberingListType(): NumberingType;
}