Skip to main content
Module

x/alloy_folk/deps.ts>Prompt.Confirm

An application installer for restriced macOS
Latest
class Prompt.Confirm
extends GenericSuggestions<boolean, string, ConfirmSettings>
import { Prompt } from "https://deno.land/x/alloy_folk@v1.1.2/deps.ts";
const { Confirm } = Prompt;

Confirm prompt representation.

Methods

protected
defaults(): string
protected
format(value: boolean): string

Format output value.

protected
getValue(): string

Get input input.

protected
success(value: boolean): string | undefined
protected
transform(value: string): boolean | 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 | ConfirmOptions): Promise<boolean>

Execute the prompt and show cursor on end.