Type Alias HTMLElementAttributes<TN>

HTMLElementAttributes: TN extends "a"
    ? HTMLAnchorAttributes
    : TN extends "area"
        ? HTMLAreaAttributes
        : TN extends "audio"
            ? HTMLAudioAttributes
            : TN extends "base"
                ? HTMLBaseAttributes
                : TN extends "button"
                    ? HTMLButtonAttributes
                    : TN extends "canvas"
                        ? HTMLCanvasAttributes
                        : TN extends "col"
                            ? HTMLTableColAttributes
                            : TN extends "colgroup"
                                ? HTMLTableColAttributes
                                : TN extends "data"
                                    ? HTMLDataAttributes
                                    : TN extends "details"
                                        ? HTMLDetailsAttributes
                                        : (...) extends (...) ? (...) : (...)

Attributes for the HTMLElement of type E.

Type Parameters