Skip to main content
Module

x/cliffy/mod.ts>List

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

List prompt representation.

Methods

protected
addChar(char: string): void

Add char.

protected
deleteChar(): void

Delete char left.

protected
format(value: string[]): string

Format output value.

protected
getValue(): string

Get input value.

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

Create list regex.

protected
transform(value: string): string[]

Map input value to output value.

protected
validate(value: string): boolean | string

Validate input value.

Static Methods

prompt(options: string | ListOptions): Promise<string[]>

Execute the prompt and show cursor on end.