(record: Record<string, unknown>, key: string)
| 155 | } |
| 156 | |
| 157 | function booleanParam(record: Record<string, unknown>, key: string): boolean | undefined { |
| 158 | const value = record[key] |
| 159 | return typeof value === "boolean" ? value : undefined |
| 160 | } |
| 161 | |
| 162 | function stringArrayParam(record: Record<string, unknown>, key: string): string[] | undefined { |
| 163 | const value = record[key] |
no outgoing calls
no test coverage detected