feat(Guild): add rulesChannel and publicUpdatesChannel (#3810)

* add rulesChannel* & publicUpdatesChannel*

* update typings
This commit is contained in:
Sugden
2020-02-22 12:04:41 +00:00
committed by SpaceEEC
parent b0d0b81c61
commit b0aed050e3
2 changed files with 38 additions and 0 deletions

4
typings/index.d.ts vendored
View File

@@ -550,8 +550,12 @@ declare module 'discord.js' {
public premiumTier: PremiumTier;
public readonly position: number;
public presences: Collection<Snowflake, Presence>;
public readonly publicUpdatesChannel: TextChannel | null;
public publicUpdatesChannelID: Snowflake | null;
public region: string;
public roles: Collection<Snowflake, Role>;
public readonly rulesChannel: TextChannel | null;
public rulesChannelID: Snowflake | null;
public splash: string;
public readonly splashURL: string;
public readonly suppressEveryone: boolean;