(event: "message", cb: (channel: string, message: string) => void)
| 1003 | |
| 1004 | interface Redis extends EventEmitter { |
| 1005 | on(event: "message", cb: (channel: string, message: string) => void): this; |
| 1006 | once(event: "message", cb: (channel: string, message: string) => void): this; |
| 1007 | |
| 1008 | on( |
no outgoing calls
no test coverage detected