mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
don't return undefined
This commit is contained in:
@@ -258,8 +258,8 @@ export class ExtHostPseudoterminal implements ITerminalChildProcess {
|
||||
onProcessResolvedShellLaunchConfig?: Event<IShellLaunchConfig> | undefined;
|
||||
onDidChangeHasChildProcesses?: Event<boolean> | undefined;
|
||||
|
||||
refreshProperty(property: TerminalPropertyType) {
|
||||
return undefined;
|
||||
refreshProperty(property: TerminalPropertyType): Promise<any> {
|
||||
return Promise.resolve('');
|
||||
}
|
||||
|
||||
async start(): Promise<undefined> {
|
||||
|
||||
Reference in New Issue
Block a user