Skip to main content
Module

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

scaffold your next project with style and 💗
Latest
class GenericInput
extends GenericPrompt<T, V, S>
Re-export
Abstract
import { GenericInput } from "https://deno.land/x/scaffold@0.3.0/src/deps/cli.ts";

Generic input prompt representation.

Constructors

new
protected
GenericInput(settings: S)

Prompt constructor.

Properties

protected
inputIndex: number
protected
inputValue: string

Methods

protected
addChar(char: string): void

Add character to current input.

protected
deleteChar(): void

Delete char left.

protected
deleteCharRight(): void

Delete char right.

protected
getCurrentInputValue(): string
protected
handleEvent(event: KeyCode): Promise<void>

Handle user input event.

protected
highlight(
value: string | number,
color1?: (val: string) => string,
color2?: (val: string) => string,
): string
protected
input(): string
protected
message(): string
protected
moveCursorLeft(): void

Move prompt cursor left.

protected
moveCursorRight(): void

Move prompt cursor right.