Merge pull request #13504 from shuntksh/fix-ssh2

ssh2 to allow undefined to TerminalModes interface
This commit is contained in:
Daniel Rosenwasser
2016-12-24 13:55:28 -05:00
committed by GitHub

2
ssh2/index.d.ts vendored
View File

@@ -1087,7 +1087,7 @@ export interface PseudoTtyInfo {
}
export interface TerminalModes {
[mode: string]: number;
[mode: string]: number | undefined;
/** Interrupt character; `255` if none. Not all of these characters are supported on all systems. */
VINTR?: number;
/** The quit character (sends `SIGQUIT` signal on POSIX systems). */