From 8fb98165a9d098ab316475d6baacb015783eb638 Mon Sep 17 00:00:00 2001 From: Synbulat Biishev Date: Wed, 16 Mar 2022 01:30:22 +0500 Subject: [PATCH] types(Embed): add forgotten `footer` type (#7665) --- packages/discord.js/typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 3b7990993..a3e0b20b5 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -613,6 +613,7 @@ export class Embed { private constructor(data: APIEmbed); public readonly data: Readonly; public get fields(): APIEmbedField[] | null; + public get footer(): EmbedFooterData | null; public get title(): string | null; public get description(): string | null; public get url(): string | null;