UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 731 B
import { Table } from '../../../../../../../common/model/tables/main-structures/table'; import { TableRow } from '../../../../../../../common/model/tables/main-structures/table-row'; import { XmlReader } from '../../../../zip/xml-reader'; import { Data } from '../../../data'; import { ElementDestination, ElementHandlerTable } from '../../destination'; export declare class TableRowDestination extends ElementDestination { protected get elementHandlerTable(): ElementHandlerTable; static handlerTable: ElementHandlerTable; row: TableRow; constructor(data: Data, table: Table); protected static getThis(data: Data): TableRowDestination; processElementOpen(_reader: XmlReader): Promise<void>; }