Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias iSelect
import { type iSelect } from "https://deno.land/x/ana_components@v0.0.36/src/types/props.ts";

Select component's type that extends the <select> element Read more.

definition: iExtendedElement<HTMLSelectElement> & { label?: string; error?: string; placeholder: string; maxWidth: boolean; options: { value: string; name: string; }[] | string[] | []; }