mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 19: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 {
|
declare enum ChannelType {
|
||||||
text,
|
text = 0,
|
||||||
dm,
|
dm = 1,
|
||||||
voice,
|
voice = 2,
|
||||||
group,
|
group = 3,
|
||||||
category,
|
category = 4,
|
||||||
news,
|
news = 5,
|
||||||
store,
|
store = 6,
|
||||||
unknown,
|
unknown = 7,
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'discord.js' {
|
declare module 'discord.js' {
|
||||||
|
|||||||
Reference in New Issue
Block a user