mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-12 16:52:43 +02:00
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
declare module 'html-to-docx' {
|
|
export default function htmlToDocx(
|
|
htmlString: string,
|
|
headerHTMLString?: string,
|
|
options?: Record<string, unknown>,
|
|
): Promise<ArrayBuffer>;
|
|
}
|