The return type of the template tag functions, html and
svg when it hasn't been compiled by @lit-labs/compiler.
A TemplateResult object holds all the information about a template
expression required to render it: the template strings, expression values,
and type of template (html or svg).
TemplateResult objects do not create any DOM on their own. To create or
update DOM you need to render the TemplateResult. See
Rendering for more information.
The return type of the template tag functions,
html
andsvg
when it hasn't been compiled by @lit-labs/compiler.A
TemplateResult
object holds all the information about a template expression required to render it: the template strings, expression values, and type of template (html or svg).TemplateResult
objects do not create any DOM on their own. To create or update DOM you need to render theTemplateResult
. See Rendering for more information.