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 {
name?: string;
name: string;
url?: string;
iconURL?: string;
proxyIconURL?: string;
}
export interface MessageEmbedFooter {
text?: string;
text: string;
iconURL?: string;
proxyIconURL?: string;
}