(str: string)
| 560 | const missingVars: string[] = [] |
| 561 | |
| 562 | function expandString(str: string): string { |
| 563 | const { expanded, missingVars: vars } = expandEnvVarsInString(str) |
| 564 | missingVars.push(...vars) |
| 565 | return expanded |
| 566 | } |
| 567 | |
| 568 | let expanded: McpServerConfig |
| 569 |
no test coverage detected