File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ export interface IPtyForkOptions {
116
116
uid ?: number ;
117
117
gid ?: number ;
118
118
encoding ?: string ;
119
- experimentalUseConpty ?: boolean ;
119
+ experimentalUseConpty ?: boolean | undefined ;
120
120
}
121
121
122
122
export interface IPtyOpenOptions {
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2017, Daniel Imms (MIT License).
3
+ * Copyright (c) 2018, Microsoft Corporation (MIT License).
3
4
*/
4
5
5
6
declare module 'node-pty' {
@@ -26,8 +27,10 @@ declare module 'node-pty' {
26
27
gid ?: number ;
27
28
encoding ?: string ;
28
29
/**
29
- * Whether to use the experimental ConPTY system on Windows. This setting will be ignored on
30
- * non-Windows.
30
+ * Whether to use the experimental ConPTY system on Windows. When this is not set, ConPTY will
31
+ * be used when the Windows build number is >= 17692.
32
+ *
33
+ * This setting does nothing on non-Windows.
31
34
*/
32
35
experimentalUseConpty ?: boolean ;
33
36
}
You can’t perform that action at this time.
0 commit comments