MCPcopy Create free account
hub / github.com/anomalyco/models.dev / SyncOptions

Interface SyncOptions

packages/core/src/sync/index.ts:119–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117type ProviderID = keyof typeof providers;
118
119interface SyncOptions {
120 dryRun?: boolean;
121 newOnly?: boolean;
122}
123
124export async function syncProviderByID(id: ProviderID, options: SyncOptions = {}) {
125 return syncProvider(providers[id], options);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected