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