UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 797 B
import { Data } from '../../data'; import { ElementDestination, ElementHandlerTable } from '../destination'; import { ParagraphPropertiesBaseDestination } from './paragraph-properties-base-destination'; export declare class ParagraphNumberingReferenceDestination extends ElementDestination { get listLevelIndex(): number; set listLevelIndex(value: number); get numberingId(): number; set numberingId(value: number); protected get elementHandlerTable(): ElementHandlerTable; static handlerTable: ElementHandlerTable; paragraphPropertiesDestination: ParagraphPropertiesBaseDestination; constructor(data: Data, paragraphPropertiesDestination: ParagraphPropertiesBaseDestination); static getThis(data: Data): ParagraphNumberingReferenceDestination; }