( model: string | undefined, )
| 162 | } |
| 163 | |
| 164 | export function getNCodeManagedModelBaseUrl( |
| 165 | model: string | undefined, |
| 166 | ): string | undefined { |
| 167 | const profile = resolveNCodeManagedModel(model) |
| 168 | if (!profile) { |
| 169 | return undefined |
| 170 | } |
| 171 | return profile.baseUrl |
| 172 | } |
no test coverage detected