Skip to main content
Module

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

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

Toggle prompt representation.

Properties

protected
status: string

Methods

protected
format(value: boolean): string

Format output value.

protected
getValue(): string

Get input value.

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

Handle user input event.

protected
message(): string
protected
read(): Promise<boolean>

Read user input from stdin, handle events and validate user input.

protected
selectActive()

Set active.

protected
selectInactive()

Set inactive.

protected
transform(value: string): boolean | undefined

Map input value to output value.

protected
validate(value: string): boolean | string

Validate input value.

Static Methods

prompt(options: string | ToggleOptions): Promise<boolean>

Execute the prompt and show cursor on end.