mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-19 06:39:55 +01:00
avoid more implicit any and some 💄
This commit is contained in:
@@ -40,7 +40,7 @@ export class SharedProcess implements ISharedProcess {
|
||||
this.window.loadURL(url);
|
||||
|
||||
// Prevent the window from dying
|
||||
const onClose = e => {
|
||||
const onClose = (e: Event) => {
|
||||
if (this.window.isVisible()) {
|
||||
e.preventDefault();
|
||||
this.window.hide();
|
||||
|
||||
Reference in New Issue
Block a user