mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 03:53:29 +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 {
|
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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user