| 143 | export class UnsubscribeFromEventsSourceError extends Error {} |
| 144 | |
| 145 | export interface EventManagerInterface<T> { |
| 146 | getLatestEventId(): Promise<string>; |
| 147 | getEvents(eventId: string): AsyncIterable<T>; |
| 148 | getLogger(): Logger; |
| 149 | } |
| 150 | |
| 151 | export interface SharesService { |
| 152 | isOwnVolume(volumeId: string): Promise<boolean>; |
no outgoing calls
no test coverage detected