Skip to content

Commit

Permalink
types(anychannel): add PartialGroupDMChannel (#7472)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImRodry authored Feb 23, 2022
1 parent d1d1b07 commit cf66930
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/discord.js/typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ export abstract class Channel extends Base {
public isThread(): this is ThreadChannel;
public isStage(): this is StageChannel;
public isTextBased(): this is TextBasedChannel;
public isDMBased(): this is PartialGroupDMChannel | DMChannel;
public isDMBased(): this is PartialGroupDMChannel | DMChannel | PartialDMChannel;
public isVoiceBased(): this is VoiceBasedChannel;
public toString(): ChannelMention;
}
Expand Down Expand Up @@ -4929,6 +4929,7 @@ export type AnyChannel =
| CategoryChannel
| DMChannel
| PartialDMChannel
| PartialGroupDMChannel
| NewsChannel
| StageChannel
| StoreChannel
Expand Down

0 comments on commit cf66930

Please sign in to comment.