Skip to main content
Module

x/scaffold/src/deps/cli.ts>Input

scaffold your next project with style and 💗
Latest
class Input
extends GenericSuggestions<string, string, InputSettings>
import { Input } from "https://deno.land/x/scaffold@0.3.0/src/deps/cli.ts";

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.