()
| 150 | export { REPL_ONLY_TOOLS } |
| 151 | /* eslint-disable @typescript-eslint/no-require-imports */ |
| 152 | const getPowerShellTool = () => { |
| 153 | if (!isPowerShellToolEnabled()) return null |
| 154 | return ( |
| 155 | require('./tools/PowerShellTool/PowerShellTool.js') as typeof import('./tools/PowerShellTool/PowerShellTool.js') |
| 156 | ).PowerShellTool |
| 157 | } |
| 158 | /* eslint-enable @typescript-eslint/no-require-imports */ |
| 159 | |
| 160 | /** |
no test coverage detected