| 23 | * Entry in the specification catalog |
| 24 | */ |
| 25 | export interface SpecCatalogEntry { |
| 26 | /** Unique identifier */ |
| 27 | id: string; |
| 28 | /** Human readable title */ |
| 29 | title: string; |
| 30 | /** Description of the specification */ |
| 31 | description: string; |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Scan a folder for OpenAPI specifications |
nothing calls this directly
no outgoing calls
no test coverage detected