| 44 | * or to add additional processing logic |
| 45 | */ |
| 46 | export interface ISpecScanner { |
| 47 | /** |
| 48 | * Scan a folder for OpenAPI specs and yield them one at a time |
| 49 | * This allows for memory-efficient processing of large specs |
| 50 | * @param folderPath Path to folder containing OpenAPI specs |
| 51 | */ |
| 52 | scan(folderPath: string): AsyncGenerator<SpecScanResult, void, unknown>; |
| 53 | } |
no outgoing calls
no test coverage detected