(t: Timer)
| 102 | type Timer = null | ReturnType<typeof setTimeout> |
| 103 | |
| 104 | const clear = (t: Timer): null => { |
| 105 | if (t) { |
| 106 | clearTimeout(t) |
| 107 | } |
| 108 | |
| 109 | return null |
| 110 | } |
| 111 | |
| 112 | class TurnController { |
| 113 | bufRef = '' |
no outgoing calls
no test coverage detected