(value: unknown)
| 111 | } |
| 112 | |
| 113 | function mapActionBoardTarget(value: unknown): TrelloActionBoardTarget | null { |
| 114 | if (!isRecordLike(value) || typeof value.id !== 'string' || typeof value.name !== 'string') { |
| 115 | return null |
| 116 | } |
| 117 | |
| 118 | return { |
| 119 | id: value.id, |
| 120 | name: value.name, |
| 121 | shortLink: getOptionalString(value.shortLink), |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | function mapActionListTarget(value: unknown): TrelloActionListTarget | null { |
| 126 | if (!isRecordLike(value) || typeof value.id !== 'string' || typeof value.name !== 'string') { |
no test coverage detected