| 8 | import * as hooks from './services/hooks' |
| 9 | |
| 10 | interface Channel { |
| 11 | receive(action: T.Action): Promise<void> |
| 12 | } |
| 13 | |
| 14 | class Channel implements Channel { |
| 15 | public context: Context |
nothing calls this directly
no outgoing calls
no test coverage detected