mirror of
https://github.com/danbulant/discord.js
synced 2026-06-07 08:41:29 +00:00
fix(typings): enum values for ChannelType (#3861)
This commit is contained in:
parent
09e4912a90
commit
acdd832fe2
1 changed files with 8 additions and 8 deletions
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' {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue