EventIndex: Add support to delete events from the index.

This commit is contained in:
Damir Jelić 2020-03-12 11:42:02 +01:00
parent b1ad0b8d77
commit cd515f1922
2 changed files with 34 additions and 1 deletions

View file

@ -123,6 +123,10 @@ export default class BaseEventIndexManager {
throw new Error("Unimplemented");
}
async deleteEvent(eventId: string): Promise<boolean> {
throw new Error("Unimplemented");
}
/**
* Check if our event index is empty.
*/