File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -98,12 +98,14 @@ export interface PluginPackageContribution {
98
98
terminal ?: PluginPackageTerminal ;
99
99
}
100
100
101
+ export interface PluginPackageTerminalProfile {
102
+ title : string ,
103
+ id : string ,
104
+ icon ?: string
105
+ }
106
+
101
107
export interface PluginPackageTerminal {
102
- profiles : {
103
- title : string ,
104
- id : string ,
105
- icon ?: string
106
- } [ ]
108
+ profiles : PluginPackageTerminalProfile [ ]
107
109
}
108
110
109
111
export interface PluginPackageLocalization {
Original file line number Diff line number Diff line change 1
1
// *****************************************************************************
2
- // Copyright (C) 2022 ST Microelectronics and others.
2
+ // Copyright (C) 2022 STMicroelectronics and others.
3
3
//
4
4
// This program and the accompanying materials are made available under the
5
5
// terms of the Eclipse Public License v. 2.0 which is available at
Original file line number Diff line number Diff line change 1
1
// *****************************************************************************
2
- // Copyright (C) 2022 ST Microelectronics and others.
2
+ // Copyright (C) 2022 STMicroelectronics and others.
3
3
//
4
4
// This program and the accompanying materials are made available under the
5
5
// terms of the Eclipse Public License v. 2.0 which is available at
14
14
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
15
// *****************************************************************************
16
16
17
- import { Event } from '@theia/core' ;
17
+ import { Emitter , Event } from '@theia/core' ;
18
18
import { injectable } from '@theia/core/shared/inversify' ;
19
- import { Emitter } from '@theia/core/shared/vscode-languageserver-protocol' ;
20
19
import { TerminalWidget } from './base/terminal-widget' ;
21
20
22
21
export const TerminalProfileService = Symbol ( 'TerminalProfileService' ) ;
You can’t perform that action at this time.
0 commit comments