Skip to main content
Module

x/lunchbox/src/types.ts>iElement

Component Library 🍱 for Deno πŸ¦• Fresh πŸ‹
Latest
type alias iElement
import { type iElement } from "https://deno.land/x/lunchbox@v0.3.15/src/types.ts";

This type is a shorthand for an extension of JSX.HTMLAttributes<T>, Partial<ARIAMixin>, and Partial<GlobalEventHandlers>. It gives all attributes that come native to a particular HTMLElement.

Type Parameters

optional
T extends EventTarget = HTMLElement
definition: JSX.HTMLAttributes<T> & Partial<ARIAMixin> & Partial<GlobalEventHandlers>