devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 454 B
TypeScript
import * as JSZip from 'jszip';
import { ImporterOptions } from '../import/importer-options';
import { XmlReader } from './xml-reader';
export declare class ArchiveData {
entryMap: Record<string, JSZip.JSZipObject>;
private options;
constructor(options: ImporterOptions);
init(blob: Blob): Promise<void>;
getXmlReader(filePath: string): Promise<XmlReader | null>;
getBase64(filePath: string): Promise<string | null>;
}