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

x/alloy_folk/deps.ts>cliffy.Input

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

Input prompt representation.

Methods

protected
format(value: string): string

Format output value.

protected
getValue(): string

Get input value.

protected
success(value: string): string | undefined
protected
transform(value: string): string | undefined

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 | InputOptions): Promise<string>

Execute the prompt and show cursor on end.