devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 611 B
TypeScript
import { DocumentCache } from '../caches/caches';
import { DocumentModel } from '../document-model';
import { DocumentProtectionSettings } from '../options/protection';
export declare class WebCachesExporter {
private documentModel;
private cache;
private jsonSubDocs;
constructor(cache: DocumentCache, caches: any, documentModel: DocumentModel);
importSubDocuments(documentProtectionSettings: DocumentProtectionSettings, imageCorrespondence: Record<number, number> | null): void;
exportSubDocuments(): any;
private static getInfoBySubDocumentId;
dispose(): void;
}