Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/alloy_folk/deps.ts>cliffy.Select

An application installer for restriced macOS
Go to Latest
class cliffy.Select
extends GenericList<string, string, S>
import { cliffy } from "https://deno.land/x/alloy_folk@v1.1.1/deps.ts";
const { Select } = cliffy;

Select prompt representation.

Type Parameters

optional
S extends SelectSettings = SelectSettings

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

protected
mapOptions(options: SelectOptions): SelectValueSettings
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.