ElectronPlatform: Fix some type annotations.

pull/11125/head
Damir Jelić 2019-11-19 12:43:43 +01:00
parent 4a25252626
commit 73b302f432
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ class SeshatIndexManager extends BaseEventIndexManager {
async addHistoricEvents(
events: [HistoricEvent],
checkpoint: CrawlerCheckpoint | null = null,
oldCheckpoint: CrawlerCheckpoint | null = null,
checkpoint: CrawlerCheckpoint | null,
oldCheckpoint: CrawlerCheckpoint | null,
): Promise<> {
return this._ipcCall('addHistoricEvents', events, checkpoint, oldCheckpoint);
}