cli-legend
Version:
"A fun command-line rogurelike dungeon game"
11 lines (10 loc) • 401 B
TypeScript
import { type Theme } from '@inquirer/core';
import type { PartialDeep } from '@inquirer/type';
type PasswordConfig = {
message: string;
mask?: boolean | string;
validate?: (value: string) => boolean | string | Promise<string | boolean>;
theme?: PartialDeep<Theme>;
};
declare const _default: import("@inquirer/type").Prompt<string, PasswordConfig>;
export default _default;