| 54 | * Entry representing a schema in the OpenAPI spec |
| 55 | */ |
| 56 | export interface SpecSchemaEntry { |
| 57 | /** Name of the schema */ |
| 58 | name: string; |
| 59 | /** Optional description of the schema */ |
| 60 | description?: string; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Summary information about an available spec |
nothing calls this directly
no outgoing calls
no test coverage detected