Interface HTMLFactory<T>

interface HTMLFactory<T> {
    (props?, ...children): DetailedReactHTMLElement<AllHTMLAttributes<T>, T>;
    (props?, ...children): DOMElement<AllHTMLAttributes<T>, T>;
}

Type Parameters

  • T extends HTMLElement

Hierarchy (view full)