I get an error when I run a build. It says
TS2339: Property 'body' does not exist on type 'Element'.
The code look likes:
const testCode = document.createElementNS('http://example.com/x/x', 'testtestCode');
testCode.body = widgetBody;
Tried to add 'as Element' or instanceof after the const, but that didn't work. Any suggestions?
testCode.innerHTML
instead? - palaѕн