(rights?: any)
| 289 | function isTemporaryAdminParticipant(participant?: any): boolean { |
| 290 | return ( |
| 291 | participant instanceof Api.ChannelParticipantAdmin && |
| 292 | (participant as any).rank === tempTitle && |
| 293 | !hasNonOtherAdminRights((participant as any).adminRights) |
| 294 | ); |
| 295 | } |
| 296 | |
| 297 | function getParticipantRank(participant?: any): string { |
no outgoing calls
no test coverage detected