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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
typings/index.d.ts vendored
View file

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