Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/tui/src/components/combobox.ts>ComboBoxOptions

🦕 Deno module for creating Terminal User Interfaces
Go to Latest
interface ComboBoxOptions
implements Omit<ButtonOptions, "label">
import { type ComboBoxOptions } from "https://deno.land/x/tui@2.0.0/src/components/combobox.ts";

Type Parameters

optional
Items extends string[] = string[]

Properties

optional
placeholder: string
items: Items | Signal<Items>
optional
selectedItem: number | undefined | Signal<number | undefined>