devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 452 B
TypeScript
import { ParagraphStyle } from '../../../../../../../common/model/paragraph/paragraph-style';
import { XmlReader } from '../../../../zip/xml-reader';
import { LeafElementDestination } from '../../destination';
export declare abstract class ParagraphStyleReferenceBaseDestination extends LeafElementDestination {
processElementOpen(reader: XmlReader): Promise<void>;
protected abstract assignParagraphStyle(style: ParagraphStyle): any;
}