| 6 | import { parseOpenAPIV3 } from './v3'; |
| 7 | |
| 8 | export interface ParseOpenAPIInput { |
| 9 | /** |
| 10 | * The API definition to parse. |
| 11 | */ |
| 12 | value: string | AnyObject; |
| 13 | /** |
| 14 | * The root URL of the specified OpenAPI document. |
| 15 | */ |
| 16 | rootURL: string | null; |
| 17 | /** |
| 18 | * Options for the parser. |
| 19 | */ |
| 20 | options?: { |
| 21 | plugins?: Plugin[]; |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | export interface ParseOpenAPIResult { |
| 26 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected