ShowMeYourName: support friend nicknames (#3639)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
ayuxia 2025-09-02 22:19:12 -03:00 committed by GitHub
parent 5c69d340d9
commit 4ff3614dc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 61 additions and 24 deletions

View file

@ -0,0 +1,15 @@
export const enum ChannelType {
GUILD_TEXT = 0,
DM = 1,
GUILD_VOICE = 2,
GROUP_DM = 3,
GUILD_CATEGORY = 4,
GUILD_ANNOUNCEMENT = 5,
ANNOUNCEMENT_THREAD = 10,
PUBLIC_THREAD = 11,
PRIVATE_THREAD = 12,
GUILD_STAGE_VOICE = 13,
GUILD_DIRECTORY = 14,
GUILD_FORUM = 15,
GUILD_MEDIA = 16
}

View file

@ -1,2 +1,3 @@
export * from "./commands";
export * from "./messages";
export * from "./channel";