UNPKG

file2html-ooxml

Version:
11 lines (10 loc) 283 B
export interface DocumentContentParsingOptions { prettify?: boolean; relations: { [key: string]: string; }; } export default function parseDocumentContent(fileContent: string, options: DocumentContentParsingOptions): { styles: string; content: string; };