(value: unknown)
| 97 | } |
| 98 | |
| 99 | function mapActionCardTarget(value: unknown): TrelloActionCardTarget | null { |
| 100 | if (!isRecordLike(value) || typeof value.id !== 'string' || typeof value.name !== 'string') { |
| 101 | return null |
| 102 | } |
| 103 | |
| 104 | return { |
| 105 | id: value.id, |
| 106 | name: value.name, |
| 107 | shortLink: getOptionalString(value.shortLink), |
| 108 | idShort: getOptionalNumber(value.idShort), |
| 109 | due: getOptionalString(value.due), |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | function mapActionBoardTarget(value: unknown): TrelloActionBoardTarget | null { |
| 114 | if (!isRecordLike(value) || typeof value.id !== 'string' || typeof value.name !== 'string') { |
no test coverage detected