| 19 | * Configuration for synchronization |
| 20 | */ |
| 21 | export interface SyncConfig { |
| 22 | /** List of specification sources to sync from */ |
| 23 | sources: SpecSource[]; |
| 24 | /** Directory where specifications will be stored */ |
| 25 | targetDirectory: string; |
| 26 | /** Optional interval for automatic synchronization (in milliseconds) */ |
| 27 | syncInterval?: number; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Result of a synchronization operation |
nothing calls this directly
no outgoing calls
no test coverage detected