(users: { userId: Snowflake }[])
| 61 | } |
| 62 | |
| 63 | export function usersMention(users: { userId: Snowflake }[]) { |
| 64 | return users.map(user => userMention(user.userId)).join(", "); |
| 65 | } |
| 66 | |
| 67 | export function mentionablesMention(mentionables: { isRole: boolean, subjectId: Snowflake }[]) { |
| 68 | return mentionables.map(mentionable => mentionableMention(mentionable)).join(", "); |
no test coverage detected