(name: string)
| 7 | } = {} |
| 8 | |
| 9 | export const getOutputChannel = (name: string): vscode.OutputChannel => { |
| 10 | if (!channels[name]) { |
| 11 | channels[name] = vscode.window.createOutputChannel(name) |
| 12 | } |
| 13 | return channels[name] |
| 14 | } |
| 15 | |
| 16 | interface ChannelOutput { |
| 17 | channel: string |
no outgoing calls
no test coverage detected