(category: ToolCategory)
| 20 | import {pageIdSchema} from './tools/ToolDefinition.js'; |
| 21 | |
| 22 | export function buildFlag(category: ToolCategory) { |
| 23 | return `category${category.charAt(0).toUpperCase() + category.slice(1)}`; |
| 24 | } |
| 25 | |
| 26 | function buildDisabledMessage( |
| 27 | toolName: string, |
no test coverage detected