Skip to content

Commit

Permalink
types: more types
Browse files Browse the repository at this point in the history
  • Loading branch information
monbrey committed Aug 1, 2021
1 parent 2581317 commit 716c71f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export class BaseGuildEmoji extends Emoji {
}

export class BaseGuildTextChannel extends TextBasedChannel(GuildChannel) {
public constructor(guild: Guild, data?: RawGuildChannelData, client?: Client);
public constructor(guild: Guild, data?: RawGuildChannelData, client?: Client, immediatePatch?: boolean);
public defaultAutoArchiveDuration?: ThreadAutoArchiveDuration;
public messages: MessageManager;
public nsfw: boolean;
Expand Down Expand Up @@ -769,7 +769,7 @@ export class GuildBan extends Base {
}

export class GuildChannel extends Channel {
public constructor(guild: Guild, data?: RawGuildChannelData, client?: Client);
public constructor(guild: Guild, data?: RawGuildChannelData, client?: Client, immediatePatch?: boolean);
private memberPermissions(member: GuildMember): Readonly<Permissions>;
private rolePermissions(role: Role): Readonly<Permissions>;

Expand Down

0 comments on commit 716c71f

Please sign in to comment.