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