UNPKG

devexpress-richedit

Version:

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

17 lines (16 loc) 793 B
import { OpenXmlRelation } from '../../../utils/open-xml-relation'; import { Data } from '../../data'; import { RelationsBaseExporter } from './base'; export declare class RelationCollectionExporter extends RelationsBaseExporter { get filePath(): string; collection: OpenXmlRelation[]; imageRelationsTable: Record<string, string>; hyperlinkRelationsTable: Record<string, string>; exportedExternalImageRelationsTable: Record<string, string>; private _filePath; constructor(data: Data, filePath: string); protected fillWriter(): void; protected generateFileRelationCore(relationTable: Record<string, string>, relationType: string, external?: boolean): void; protected isWriteToZip(): boolean; private generateHyperlinkRelationsCore; }