(options?: Record<string, any>)
| 25 | |
| 26 | export interface IQueryResult<T> extends Pick<Promise<T>, keyof Promise<T> & ExposedPromiseKeys> { |
| 27 | stream(options?: Record<string, any>): PassThrough & AsyncIterable<T> |
| 28 | } |
| 29 | |
| 30 | export interface IEventRepository { |
no outgoing calls
no test coverage detected