UNPKG

devexpress-richedit

Version:

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

18 lines (17 loc) 633 B
import { XmlWriter } from '../../zip/xml-writer'; import { Data } from '../data'; export declare abstract class BaseExporter { protected data: Data; protected get writer(): XmlWriter; constructor(data: Data); } export declare abstract class ExporterBaseWithRootElement extends BaseExporter { export(): void; get rootNSPrefix(): string; get rootNSValue(): string; abstract get filePath(): string; abstract get rootElement(): string; protected abstract fillWriter(): any; protected isWriteToZip(): boolean; protected writeToZip(filePath: string, writer: XmlWriter): void; }