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

x/alloy/deps.ts>cliffy.List

An application installer for restriced macOS
Latest
class cliffy.List
extends GenericSuggestions<string[], string, ListSettings>
import { cliffy } from "https://deno.land/x/alloy@v0.0.9/deps.ts";
const { List } = cliffy;

List prompt representation.

Methods

protected
addChar(char: string): void

Add char.

protected
complete(): Promise<string>
protected
deleteChar(): void

Delete char left.

protected
format(value: string[]): string

Format output value.

protected
getCurrentInputValue(): string
protected
getTags(value?: string): Array<string>
protected
getValue(): string

Get input value.

protected
input(): string
protected
regexp(): RegExp

Create list regex.

protected
success(value: string[]): string | undefined
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: string | ListOptions): Promise<string[]>

Execute the prompt and show cursor on end.