| 45 | * Interface for managing synchronization of specifications |
| 46 | */ |
| 47 | export interface ISyncManager { |
| 48 | /** |
| 49 | * Synchronize specifications from sources to target directory |
| 50 | * @param config Configuration for the sync operation |
| 51 | * @returns Array of results for each synced specification |
| 52 | */ |
| 53 | sync(config: SyncConfig): Promise<SyncResult[]>; |
| 54 | } |
nothing calls this directly
no outgoing calls
no test coverage detected