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