(guild: Guild)
| 164 | } |
| 165 | |
| 166 | export function getMemberCount(guild: Guild) { |
| 167 | const aprox = guild.approximateMemberCount; |
| 168 | const actual = guild.memberCount; |
| 169 | if (aprox && aprox > actual) return aprox; |
| 170 | return actual; |
| 171 | } |
| 172 | |
| 173 | export function toAOServer(guild: Guild) { |
| 174 | return getDefaultServer({ |
no outgoing calls
no test coverage detected