(record: Record<string, unknown>, key: string)
| 160 | } |
| 161 | |
| 162 | function stringArrayParam(record: Record<string, unknown>, key: string): string[] | undefined { |
| 163 | const value = record[key] |
| 164 | return Array.isArray(value) ? value.filter((item): item is string => typeof item === "string") : undefined |
| 165 | } |
| 166 | |
| 167 | function hyperplanStrategyParam(value: unknown): OpenADEHyperPlanStrategy | undefined { |
| 168 | if (value === undefined) return undefined |
no outgoing calls
no test coverage detected