Module

x/wmill/deps.ts>Input

Open-source developer platform to turn scripts into workflows and UIs. Fastest workflow engine (5x vs Airflow). Open-source alternative to Airplane and Retool.
Extremely Popular
Go to Latest
class Input
extends GenericSuggestions<string, string>
import { Input } from "https://dotland.deno.dev/x/wmill@v1.320.3/deps.ts";

Input prompt representation.

import { Input } from "./mod.ts";

const confirmed: string = await Input.prompt("Enter your name");

Constructors

new
Input(options: string | InputOptions)

Properties

protected
readonly
settings: InputSettings

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.

getDefaultSettings(options: InputOptions): InputSettings

Static Methods

inject(value: string): void

Inject prompt value. If called, the prompt doesn't prompt for an input and returns immediately the injected value. Can be used for unit tests or pre selections.

prompt(options: string | InputOptions): Promise<string>

Execute the prompt with provided options.