avoid more implicit any and some 💄

This commit is contained in:
Benjamin Pasero
2017-09-04 11:20:09 +02:00
parent 7712905526
commit bef497ff82
114 changed files with 282 additions and 296 deletions
+1 -1
View File
@@ -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();