The simple usage documentation specifies the following:
import { DOMImplementationImpl, DOMParserImpl, XMLSerializerImpl } from 'xmldom-ts'
import { install, xsltProcess, xmlParse } from 'xslt-ts'
This results in the error:
file:///C:/Users/scott/code/xslt/test.mjs:2
import { install, xsltProcess, xmlParse } from 'xslt-ts'
^^^^^^^
SyntaxError: The requested module 'xslt-ts' does not provide an export named 'install'
This is a brand new project where I've done nothing but install xslt-ts and xmldom-ts and try to run the example code on a string of XML.
The simple usage documentation specifies the following:
This results in the error:
This is a brand new project where I've done nothing but install
xslt-tsandxmldom-tsand try to run the example code on a string of XML.