mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Add missing return type
This commit is contained in:
@@ -455,7 +455,7 @@ export class ExtHostTerminalService implements ExtHostTerminalServiceShape {
|
||||
return this._getTerminalPromises[id];
|
||||
}
|
||||
|
||||
private _delay(timeout: number, result: any) {
|
||||
private _delay(timeout: number, result: any): Promise<void> {
|
||||
return new Promise(c => {
|
||||
setTimeout(c(result), timeout);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user