Skip to main content
Module

x/deno_dom/deno-dom-native.ts>HTMLTemplateElement

Browser DOM & HTML parser in Deno
Extremely Popular
Go to Latest
class HTMLTemplateElement
extends Element
Re-export
import { HTMLTemplateElement } from "https://deno.land/x/deno_dom@v0.1.33-alpha/deno-dom-native.ts";

Constructors

new
HTMLTemplateElement(
parentNode: Node | null,
attributes: [string, string][],
key: CTOR_KEY,
)

Properties

private
__contentIsSet: boolean

This blocks access to the .#contents property when the super() constructor is running which invokes (our overridden) _setParent() method. Without it, we get the following error thrown:

TypeError: Cannot read private member #content from an object whose class did not declare it

FIXME: Maybe find a cleaner way to do this

readonly
content: DocumentFragment
innerHTML: string
readonly
outerHTML: string