Added a missing type on Question interface (#17094)

This commit is contained in:
Parvez
2017-06-13 08:12:21 -07:00
committed by Andy
parent 9340ad9a47
commit eb7cfc536a
+5
View File
@@ -1,6 +1,7 @@
// Type definitions for Inquirer.js
// Project: https://github.com/SBoudrias/Inquirer.js
// Definitions by: Qubo <https://github.com/tkQubo>
// Parvez <https://github.com/ppathan>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="rx" />
@@ -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;
}
/**