Type Alias ElementOf<TN>

ElementOf: TN extends HTMLElementTagName
    ? HTMLElementTagNameMap[TN]
    : TN extends SVGElementTagName
        ? SVGElementTagNameMap[TN]
        : TN extends "*" ? HTMLElement : never

Element type associated with the specified tag name.

Type Parameters

  • TN extends TagName

    Tag name of the corresponding element.