@arcmantle/adapter-element
    Preparing search index...

    Type Alias UncompiledTemplateResult<T>

    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.

    type UncompiledTemplateResult<T extends ResultType = ResultType> = {
        _$litType$: T;
        strings: TemplateStringsArray;
        values: unknown[];
    }

    Type Parameters

    • T extends ResultType = ResultType
    Index

    Properties

    _$litType$: T
    strings: TemplateStringsArray
    values: unknown[]