Skip to main content
Module

x/cliffy/mod.ts>Toggle

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
class Toggle
extends GenericPrompt<boolean, string, ToggleSettings>
import { Toggle } from "https://deno.land/x/cliffy@v0.19.2/mod.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.