types: make embed author and footer props name and text required (#6779)

This commit is contained in:
Suneet Tipirneni
2021-10-07 12:24:48 -04:00
committed by GitHub
parent e31c5ca1a8
commit a84e51b767

4
typings/index.d.ts vendored
View File

@@ -4393,14 +4393,14 @@ export interface MessageEditOptions {
} }
export interface MessageEmbedAuthor { export interface MessageEmbedAuthor {
name?: string; name: string;
url?: string; url?: string;
iconURL?: string; iconURL?: string;
proxyIconURL?: string; proxyIconURL?: string;
} }
export interface MessageEmbedFooter { export interface MessageEmbedFooter {
text?: string; text: string;
iconURL?: string; iconURL?: string;
proxyIconURL?: string; proxyIconURL?: string;
} }