fix(typings): enum values for ChannelType (#3861)

This commit is contained in:
Souji
2020-02-29 18:58:20 +01:00
committed by GitHub
parent 09e4912a90
commit acdd832fe2

16
typings/index.d.ts vendored
View File

@@ -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' {