(id: ProviderID, options: SyncOptions = {})
| 122 | } |
| 123 | |
| 124 | export async function syncProviderByID(id: ProviderID, options: SyncOptions = {}) { |
| 125 | return syncProvider(providers[id], options); |
| 126 | } |
| 127 | |
| 128 | export async function syncProvider<SourceModel>( |
| 129 | provider: SyncProvider<SourceModel>, |
no test coverage detected