You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unable to use this package with typescript in node.js
I use showdown on the backend to build emails in Markdown. I don't need to convert html to markdown so I don't use makeMarkdown that takes an HTMLDocument which is missing in Node.js and therefore makes builds to fail
Cannot find name 'HTMLDocument'.
951 makeMarkdown(src: string, HTMLParser?: HTMLDocument): string;
~~~~~~~~~~~~
Found 1 error in node_modules/@types/showdown/index.d.ts:951
I cannot override typings to fix this myself as showdown package does not allow for typing override :
Could not find a declaration file for module 'showdown'. '[project_path]/node_modules/showdown/dist/showdown.js' implicitly has an 'any' type.
There are types at '[project_path]/types/showdown/index.d.ts', but this result could not be resolved when respecting package.json "exports". The 'showdown' library may need to update its package.json or typings.
Any help ?
The text was updated successfully, but these errors were encountered:
Hi,
I'm unable to use this package with typescript in node.js
I use showdown on the backend to build emails in Markdown. I don't need to convert html to markdown so I don't use
makeMarkdown
that takes anHTMLDocument
which is missing in Node.js and therefore makes builds to failI cannot override typings to fix this myself as showdown package does not allow for typing override :
Any help ?
The text was updated successfully, but these errors were encountered: