From a84e51b767c47ea06bd30fb490931f700c810952 Mon Sep 17 00:00:00 2001 From: Suneet Tipirneni <77477100+suneettipirneni@users.noreply.github.com> Date: Thu, 7 Oct 2021 12:24:48 -0400 Subject: [PATCH] types: make embed author and footer props `name` and `text` required (#6779) --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index d120dc559344..5bcb5de11790 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -4393,14 +4393,14 @@ export interface MessageEditOptions { } export interface MessageEmbedAuthor { - name?: string; + name: string; url?: string; iconURL?: string; proxyIconURL?: string; } export interface MessageEmbedFooter { - text?: string; + text: string; iconURL?: string; proxyIconURL?: string; }