@aidalinfo/office-to-markdown
Version:
Modern TypeScript library for converting Office documents (DOCX) to Markdown format, optimized for Bun runtime with enhanced table support and math equation conversion.
18 lines • 458 B
TypeScript
/**
* The result of converting a document to Markdown.
*/
export interface DocumentConverterResult {
/**
* The converted Markdown text.
*/
markdown: string;
/**
* Optional title of the document.
*/
title?: string;
}
/**
* Create a DocumentConverterResult instance.
*/
export declare function createDocumentConverterResult(markdown: string, title?: string): DocumentConverterResult;
//# sourceMappingURL=result.d.ts.map