mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
types(message): make attachment dimensions optional
Reference: https://github.com/discord/discord-api-docs/pull/2214
This commit is contained in:
@@ -32,9 +32,9 @@ export interface Attachment {
|
||||
/** A proxied url of file */
|
||||
proxy_url: string;
|
||||
/** The height of file if an image */
|
||||
height: number | null;
|
||||
height?: number | null;
|
||||
/** The width of the file if an image */
|
||||
width: number | null;
|
||||
width?: number | null;
|
||||
}
|
||||
|
||||
export interface Embed {
|
||||
|
||||
Reference in New Issue
Block a user