( id: ProviderType, options: Omit<ProviderProfile, "id">, )
| 228 | } |
| 229 | return out; |
| 230 | }; |
| 231 | |
| 232 | const createProviderProfile = ( |
| 233 | id: ProviderType, |
| 234 | options: Omit<ProviderProfile, "id">, |
| 235 | ): ProviderProfile => ({ |
| 236 | id, |
| 237 | ...options, |
| 238 | }); |
| 239 |
no outgoing calls
no test coverage detected