whits
    Preparing search index...

    Type Alias HtmlAttributes<T>

    HtmlAttributes: Record<
        HtmlAttribute<T>
        | `data-${string}`
        | HtmlGlobalAttribute,
        string | boolean,
    >

    An object that represents the attributes of an HTML tag. It is a record type that maps attribute names to their values.

    Type Parameters