Skip to main content
Module

x/cliffy/mod.ts>Select

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
class Select
extends GenericList<string, string, S>
import { Select } from "https://deno.land/x/cliffy@v0.19.2/mod.ts";

Select prompt representation.

Properties

protected
listIndex: number

Methods

protected
format(value: string): string

Format output value.

protected
getListItem(item: SelectOptionSettings, isSelected?: boolean): string

Render select option.

protected
getValue(): string

Get value of selected option.

protected
input(): string
protected
transform(value: string): string

Map input value to output value.

protected
validate(value: string): boolean | string

Validate input value.

Static Methods

inject(value: string): void

Inject prompt value. Can be used for unit tests or pre selections.

prompt(options: SelectOptions): Promise<string>

Execute the prompt and show cursor on end.