don't return undefined

This commit is contained in:
meganrogge
2021-09-13 10:36:34 -07:00
parent e9b74efc3c
commit 8d848923ca
3 changed files with 4 additions and 4 deletions

View File

@@ -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> {