devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 852 B
TypeScript
import { IListLevel } from '../../model/numbering-lists/list-level';
import { NumberingListBase, NumberingType } from '../../model/numbering-lists/numbering-list';
import { CommandOptions, CommandSimpleOptions } from '../command-base';
import { IntervalCommandStateEx } from '../command-states';
import { NumberingListCommandBaseBase } from './numbering-list-command-base';
export declare class InsertNumerationToParagraphsCommand extends NumberingListCommandBaseBase<CommandSimpleOptions<NumberingListBase<IListLevel>>> {
abstractNumberingList: NumberingListBase<IListLevel>;
getState(options?: CommandOptions): IntervalCommandStateEx;
executeCore(_state: IntervalCommandStateEx, options: CommandSimpleOptions<NumberingListBase<IListLevel>>): boolean;
private insertNumeration;
getNumberingListType(): NumberingType;
}