devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 436 B
TypeScript
import { Table } from '../../../../../../common/model/tables/main-structures/table';
import { XmlReader } from '../../../zip/xml-reader';
import { Data } from '../../data';
import { LeafElementDestination } from '../destination';
export declare class TableStyleDestination extends LeafElementDestination {
table: Table;
constructor(data: Data, table: Table);
processElementOpen(reader: XmlReader): Promise<void>;
}