You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
391 B
TypeScript

3 weeks ago
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;