(input: Record<string, unknown>, key: string)
| 16 | } |
| 17 | |
| 18 | function stringField(input: Record<string, unknown>, key: string): string | undefined { |
| 19 | return typeof input[key] === "string" ? input[key] : undefined |
| 20 | } |
| 21 | |
| 22 | function configIssues(input: Record<string, unknown>): ConfigIssue[] { |
| 23 | return Array.isArray(input.issues) |