| 33 | }; |
| 34 | |
| 35 | export interface ITool extends Tool { |
| 36 | runTool( |
| 37 | compilationInfo: CompilationInfo, |
| 38 | inputFilepath?: string, |
| 39 | args?: string[], |
| 40 | stdin?: string, |
| 41 | supportedLibraries?: Record<string, OptionsHandlerLibrary>, |
| 42 | dontAppendInputFilepath?: boolean, |
| 43 | ): Promise<ToolResult>; |
| 44 | } |
no outgoing calls
no test coverage detected