| 31 | * Result of a synchronization operation |
| 32 | */ |
| 33 | export interface SyncResult { |
| 34 | /** Whether the sync was successful */ |
| 35 | success: boolean; |
| 36 | /** When the sync was performed */ |
| 37 | timestamp: Date; |
| 38 | /** Name of the file that was synced */ |
| 39 | filename: string; |
| 40 | /** Optional error if sync failed */ |
| 41 | error?: Error; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Interface for managing synchronization of specifications |
nothing calls this directly
no outgoing calls
no test coverage detected