Skip to content

Commit

Permalink
types: make embed author and footer props name and text required (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni authored Oct 7, 2021
1 parent e31c5ca commit a84e51b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit a84e51b

Please sign in to comment.