| 4 | * Identifies a specific OpenAPI specification |
| 5 | */ |
| 6 | export interface SpecIdentifier { |
| 7 | /** Unique identifier for the specification */ |
| 8 | specId: string; |
| 9 | /** Optional title of the specification */ |
| 10 | title?: string; |
| 11 | /** Optional version of the specification */ |
| 12 | version?: string; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Process OpenAPI specifications into a dereferenced version. |
nothing calls this directly
no outgoing calls
no test coverage detected