devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 447 B
TypeScript
import { TableStyle } from '../../../../../../../common/model/tables/styles/table-style';
import { StyleBaseExporter } from './style-base';
export declare class TableStyleExporter extends StyleBaseExporter<TableStyle> {
getStyleId(styleIndex: number): string;
getStyleIndexByName(name: string): number;
protected getType(): string;
protected exportCore(style: TableStyle): void;
private exportTableConditionalStyle;
}