symfony-style-console
Version:
Use the style and utilities of the Symfony Console in Node.js
12 lines (11 loc) • 343 B
TypeScript
import InputInterface from './InputInterface';
/**
* This is pretty much a dummy class.
*
* It allows for enabling or disabling "interactive" mode to prevent questions.
*/
export default class ConsoleInput implements InputInterface {
private interactive;
isInteractive(): boolean;
setInteractive(interactive: boolean): void;
}