Strict null checks

This commit is contained in:
Matt Bierner
2018-10-22 17:23:42 -07:00
parent d79718a93f
commit 7f7df378ef
7 changed files with 62 additions and 33 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ export class SharedProcess implements ISharedProcess {
logLevel: this.logService.getLevel()
});
ipcMain.once('handshake:im ready', () => c(null));
ipcMain.once('handshake:im ready', () => c(void 0));
});
});
}