UNPKG
html-to-docx-typescript
Version:
latest (1.3.2)
1.3.2
HTML to DOCX converter
github.com/privateOmega/html-to-docx
privateOmega/html-to-docx
html-to-docx-typescript
/
dist
/
index.d.ts
5 lines
(4 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
/// <reference types="node" />
import
{
DocumentOptions
}
from
'./types'
;
declare
function
generateContainer
(
htmlString
:
any
,
headerHTMLString
:
any
,
documentOptions
:
DocumentOptions
,
footerHTMLString
:
any
):
Promise
<
Buffer
|
Blob
>;
export
default
generateContainer;