| 15 | } |
| 16 | |
| 17 | export interface IRedisPubSubEmitter { |
| 18 | emit<T>(channel: string, data: T) |
| 19 | } |
| 20 | |
| 21 | export interface IRedisPubSubReceiver { |
| 22 | subscribe<T>(channel: string, listener: (data: T) => Promise<void>): string |
no outgoing calls
no test coverage detected