mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-15 10:58:18 +00:00
types: make embed author and footer props name and text required (#6779)
This commit is contained in:
Vendored
+2
-2
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user