BaseEventIndexManager: Fix some type annotations.

pull/21833/head
Damir Jelić 2019-11-18 10:26:17 +01:00
parent 5149164010
commit 910c3ac08d
1 changed files with 2 additions and 2 deletions

View File

@ -159,8 +159,8 @@ export default class BaseEventIndexManager {
*/
async addHistoricEvents(
events: [HistoricEvent],
checkpoint: CrawlerCheckpoint | null = null,
oldCheckpoint: CrawlerCheckpoint | null = null,
checkpoint: CrawlerCheckpoint | null,
oldCheckpoint: CrawlerCheckpoint | null,
): Promise<bool> {
throw new Error("Unimplemented");
}