(record: Record<string, unknown>, fields: string[])
| 319 | } |
| 320 | |
| 321 | function hasOptionalStringFields(record: Record<string, unknown>, fields: string[]): boolean { |
| 322 | return fields.every((field) => record[field] === undefined || typeof record[field] === 'string'); |
| 323 | } |
| 324 | |
| 325 | function isOptionalRemoteConnectionDaemonState(value: unknown): boolean { |
| 326 | if (value === undefined) return true; |
no outgoing calls
no test coverage detected