MCPcopy Create free account
hub / github.com/ReAPI-com/mcp-openapi / SyncResult

Interface SyncResult

src/core/interfaces/ISyncManager.ts:33–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 * Result of a synchronization operation
32 */
33export 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected