import { Confirm } from "https://deno.land/x/cliffy@v0.19.0/prompt/mod.ts";
Confirm prompt representation.
Methods
protected
defaults(): stringprotected
format(value: boolean): stringFormat output value.
protected
getValue(): stringGet input input.
protected
success(value: boolean): string | undefinedprotected
transform(value: string): boolean | undefinedMap input value to output value.
protected
validate(value: string): boolean | stringValidate 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.