(record: Record<string, unknown>, key: string)
| 33 | } |
| 34 | |
| 35 | export function readRequiredString(record: Record<string, unknown>, key: string): string { |
| 36 | return readRequired(record, key, parseNonEmptyString, `Daemon response is missing "${key}".`); |
| 37 | } |
| 38 | |
| 39 | export function readOptionalString( |
| 40 | record: Record<string, unknown>, |
no test coverage detected