(value: string)
| 13 | } |
| 14 | |
| 15 | export function parseDoctorFormat(value: string): DoctorFormat { |
| 16 | return parseEnumValue(value, DOCTOR_FORMATS, 'doctor format'); |
| 17 | } |
| 18 | |
| 19 | export function resolveEndpoint(endpointOption: string | undefined, env: NodeJS.ProcessEnv): string { |
| 20 | const endpoint = endpointOption ?? env.MSLEARN_ENDPOINT ?? DEFAULT_ENDPOINT; |
nothing calls this directly
no test coverage detected