(entry: T)
| 177 | } |
| 178 | |
| 179 | function formatEntry(entry: T): { name: string, value: string } { |
| 180 | return { |
| 181 | name: entryLabelProperty ? formatPropertyValue(entry, entryLabelProperty) : entryLabel, |
| 182 | value: formatEntryDescription(entry), |
| 183 | }; |
| 184 | } |
| 185 | |
| 186 | const embeds = Object.entries(groupBy(entries, queueIdProperty)).map(([queueId, queueEntries]) => { |
| 187 | const _queueId = BigIntSafe(queueId); |
no test coverage detected