mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
types: make embed author and footer props name and text required (#6779)
This commit is contained in:
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
@@ -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