UNPKG

devexpress-richedit

Version:

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

19 lines (18 loc) 654 B
import { TableWidthUnit } from '../../../../model/tables/secondary-structures/table-units'; import { ImportedTableCellInfo } from '../containers/tables'; import { HtmlTagImporterBase } from './base'; export declare class HtmlTrTagImporter extends HtmlTagImporterBase { static tagName: string; cells: ImportedTableCellInfo[]; gridBeforeInfo: { gridBefore: number; widthBefore: TableWidthUnit; }; private rowElement; elementTag(): string; importBefore(): void; isImportChildren(): boolean; importAfter(): void; private static importGridBefore; private static importGridAfter; }