(value: unknown)
| 123 | } |
| 124 | |
| 125 | function mapActionListTarget(value: unknown): TrelloActionListTarget | null { |
| 126 | if (!isRecordLike(value) || typeof value.id !== 'string' || typeof value.name !== 'string') { |
| 127 | return null |
| 128 | } |
| 129 | |
| 130 | return { |
| 131 | id: value.id, |
| 132 | name: value.name, |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | export function mapTrelloList(value: unknown): TrelloList { |
| 137 | if (!isRecordLike(value)) { |
no test coverage detected