( record: Record<string, unknown>, key: string, )
| 37 | } |
| 38 | |
| 39 | export function readOptionalString( |
| 40 | record: Record<string, unknown>, |
| 41 | key: string, |
| 42 | ): string | undefined { |
| 43 | return readOptional(record, key, parseNonEmptyString); |
| 44 | } |
| 45 | |
| 46 | export function readNullableString( |
| 47 | record: Record<string, unknown>, |
nothing calls this directly
no test coverage detected