Updated @types/node to v14, fixed TS breaking with changes

This commit is contained in:
Rupenieks
2020-08-12 12:19:41 +02:00
parent 3ef6f031ec
commit a69098a096
10 changed files with 12 additions and 9 deletions

View File

@@ -181,7 +181,7 @@ export class Start extends Command {
Start.openBrowser();
}
this.log(`\nPress "o" to open in Browser.`);
process.stdin.on("data", (key) => {
process.stdin.on("data", (key : string) => {
if (key === 'o') {
Start.openBrowser();
inputText = '';