I am getting the Typescript error message
Argument of type 'TemplateStringsArray' is not assignable to parameter of type 'string'.ts(2345)
for the following line
const newSvg = svg`<svg>`;
Is there a way to get this to work? I stumbled upon this error while trying to debug the following line
d3.select( svg`<svg>`)
which gives similar error messages.