ITOH
2021-04-13 21:32:34 +02:00
parent 3965e13d92
commit f942f9c2f5

View File

@@ -12,9 +12,9 @@ export interface Attachment {
/** A proxied url of file */
proxyUrl: string;
/** Height of file (if image) */
height: number | null;
height?: number | null;
/** Width of file (if image) */
width: number | null;
width?: number | null;
}
/** https://discord.com/developers/docs/resources/channel#attachment-object */