From 1207c243d1d819b2a78230bb194e07f14d966ea9 Mon Sep 17 00:00:00 2001 From: Kamran Mackey Date: Mon, 4 Mar 2019 12:32:15 -0700 Subject: [PATCH] typings(Guild): add missing defaultRole property (#3126) * [typings] Fix missing defaultRole property under Guild. Signed-off-by: Kamran Mackey * [typings] Added missing readonly identifier. Signed-off-by: Kamran Mackey --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 9a306de85..e60dcfdf8 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -386,6 +386,7 @@ declare module 'discord.js' { public readonly createdAt: Date; public readonly createdTimestamp: number; public defaultMessageNotifications: DefaultMessageNotifications | number; + public readonly defaultRole: Role; public deleted: boolean; public embedEnabled: boolean; public emojis: GuildEmojiStore;