Posso colocar o template em um outro html e puxar ele pra dentro do código? oouuu ele tem que ser xumbado aqui mesmo? template(model: Negociacoes): string {
return <table class = "table table-hover table-bordered">
<thead>
<tr>
<th>Data</th>
<th>Quantidade</th>
<th>Valor</th>
</tr>
</thead>
<tbody>
${model.lista().map(negociacao => {
return
${new Intl.DateTimeFormat().format(negociacao.data)} | ${negociacao.quantidade} | ${negociacao.valor} |
;
}).join('')}
</tbody>
</table>
;