(...args)
| 47 | }; |
| 48 | |
| 49 | const error: MockConsole['error'] = (...args) => { |
| 50 | return Ref.update(lines, Array.appendAll(args)); |
| 51 | }; |
| 52 | |
| 53 | const clear: MockConsole['clear'] = Ref.update(lines, Array.empty); |
| 54 |
nothing calls this directly
no test coverage detected
searching dependent graphs…