This is a list of HTML tags and their associated types using the TypeScript DetailedHTMLProps
interface. The DetailedHTMLProps
interface is a generic type that provides a way to describe HTML element props in a more precise way. The list includes tags from the most commonly used to the least commonly used HTML elements. Each tag is listed in alphabetical order with its associated type definition using the DetailedHTMLProps
interface.
<a>
tag:DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>
<abbr>
tag:DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>
<address>
tag:DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>
<area>
tag:DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>
<article>
tag:DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>
<aside>
tag:DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>