rowboat/apps/x/apps/main/src/html-to-docx.d.ts

8 lines
193 B
TypeScript
Raw Normal View History

declare module 'html-to-docx' {
export default function htmlToDocx(
htmlString: string,
headerHTMLString?: string,
options?: Record<string, unknown>,
): Promise<ArrayBuffer>;
}