* Removes completely the entity stored locally from the database. * * It is no-op if entity is not present.
(keys: string[])
| 99 | * It is no-op if entity is not present. |
| 100 | */ |
| 101 | removeEntities(keys: string[]): Promise<void>; |
| 102 | } |
| 103 | |
| 104 | export type EntityResult<T> = { key: string; ok: true; value: T } | { key: string; ok: false; error: string }; |
no outgoing calls
no test coverage detected