From eb7cfc536a90c8bbf0274d255b31f9b796fb15f1 Mon Sep 17 00:00:00 2001 From: Parvez Date: Tue, 13 Jun 2017 08:12:21 -0700 Subject: [PATCH] Added a missing type on Question interface (#17094) --- types/inquirer/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/inquirer/index.d.ts b/types/inquirer/index.d.ts index dd2f4ad3c7..2a0b9f60f4 100644 --- a/types/inquirer/index.d.ts +++ b/types/inquirer/index.d.ts @@ -1,6 +1,7 @@ // Type definitions for Inquirer.js // Project: https://github.com/SBoudrias/Inquirer.js // Definitions by: Qubo +// Parvez // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -110,6 +111,10 @@ declare namespace inquirer { * Change the number of lines that will be rendered when using list, rawList, expand or checkbox. */ pageSize?: number; + /** + * Add a mask when password will entered + */ + mask?: string; } /**