| 180 | } |
| 181 | |
| 182 | interface HasRequiredConfigMissingOptions { |
| 183 | manifest: McpbManifestAny; |
| 184 | userConfig?: z.infer<typeof McpbUserConfigValuesSchema>; |
| 185 | } |
| 186 | |
| 187 | function isInvalidSingleValue(value: unknown): boolean { |
| 188 | return value === undefined || value === null || value === ""; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…