diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index 0d644aa4..b6825bca 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -122,6 +122,10 @@ class SeshatIndexManager extends BaseEventIndexManager { return this._ipcCall('addEventToIndex', ev, profile); } + async deleteEvent(eventId: string): Promise { + return this._ipcCall('deleteEvent', eventId); + } + async isEventIndexEmpty(): Promise { return this._ipcCall('isEventIndexEmpty'); }