| 92 | * Result of loading an operation |
| 93 | */ |
| 94 | export interface LoadOperationResult { |
| 95 | /** Path of the operation */ |
| 96 | path: string; |
| 97 | /** HTTP method */ |
| 98 | method: string; |
| 99 | /** The operation object */ |
| 100 | operation: OpenAPIV3.OperationObject; |
| 101 | /** ID of the specification containing the operation */ |
| 102 | specId: string; |
| 103 | /** URI identifying the operation */ |
| 104 | uri: string; |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Interface for persisting OpenAPI specifications |
nothing calls this directly
no outgoing calls
no test coverage detected