File tree 2 files changed +7
-13
lines changed 2 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -4854,6 +4854,13 @@ declare module 'vscode' {
4854
4854
*/
4855
4855
readonly processId : Thenable < number | undefined > ;
4856
4856
4857
+ /**
4858
+ * The object used to initialize the terminal, this is useful for example to detecting the
4859
+ * shell type of when the terminal was not launched by this extension or for detecting what
4860
+ * folder the shell was launched in.
4861
+ */
4862
+ readonly creationOptions : Readonly < TerminalOptions | ExtensionTerminalOptions > ;
4863
+
4857
4864
/**
4858
4865
* Send text to the terminal. The text is written to the stdin of the underlying pty process
4859
4866
* (shell) of the terminal.
Original file line number Diff line number Diff line change @@ -987,19 +987,6 @@ declare module 'vscode' {
987
987
988
988
//#endregion
989
989
990
- //#region Terminal creation options https://github.com/microsoft/vscode/issues/63052
991
-
992
- export interface Terminal {
993
- /**
994
- * The object used to initialize the terminal, this is useful for things like detecting the
995
- * shell type of shells not launched by the extension or detecting what folder the shell was
996
- * launched in.
997
- */
998
- readonly creationOptions : Readonly < TerminalOptions | ExtensionTerminalOptions > ;
999
- }
1000
-
1001
- //#endregion
1002
-
1003
990
//#region Terminal dimensions property and change event https://github.com/microsoft/vscode/issues/55718
1004
991
1005
992
/**
You can’t perform that action at this time.
0 commit comments