| 13 | } from "./tools-render"; |
| 14 | |
| 15 | export interface Tool { |
| 16 | id: string; |
| 17 | name: string; |
| 18 | title: string; |
| 19 | description: string; |
| 20 | category: string; |
| 21 | featured: boolean; |
| 22 | requirements: string[]; |
| 23 | features: string[]; |
| 24 | links: { |
| 25 | blog?: string; |
| 26 | vscode?: string; |
| 27 | "vscode-insiders"?: string; |
| 28 | "visual-studio"?: string; |
| 29 | github?: string; |
| 30 | documentation?: string; |
| 31 | marketplace?: string; |
| 32 | npm?: string; |
| 33 | pypi?: string; |
| 34 | }; |
| 35 | configuration?: { |
| 36 | type: string; |
| 37 | content: string; |
| 38 | }; |
| 39 | tags: string[]; |
| 40 | } |
| 41 | |
| 42 | interface ToolsData { |
| 43 | items: Tool[]; |
nothing calls this directly
no outgoing calls
no test coverage detected