Skip to main content
Module

x/alloy_folk/deps.ts>Prompt.Select

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

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.