mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
fix(typings): enum values for ChannelType (#3861)
This commit is contained in:
16
typings/index.d.ts
vendored
16
typings/index.d.ts
vendored
@@ -1,12 +1,12 @@
|
||||
declare enum ChannelType {
|
||||
text,
|
||||
dm,
|
||||
voice,
|
||||
group,
|
||||
category,
|
||||
news,
|
||||
store,
|
||||
unknown,
|
||||
text = 0,
|
||||
dm = 1,
|
||||
voice = 2,
|
||||
group = 3,
|
||||
category = 4,
|
||||
news = 5,
|
||||
store = 6,
|
||||
unknown = 7,
|
||||
}
|
||||
|
||||
declare module 'discord.js' {
|
||||
|
||||
Reference in New Issue
Block a user