mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-15 19:08:20 +00:00
feat(MessageEmbed): add missing proxyURL property to video (#3109)
* Added missing property to MessageEmbed.video * Updated typings for MessageEmbed.video
This commit is contained in:
Vendored
+1
-1
@@ -713,7 +713,7 @@ declare module 'discord.js' {
|
||||
public title: string;
|
||||
public type: string;
|
||||
public url: string;
|
||||
public readonly video: { url?: string; height?: number; width?: number };
|
||||
public readonly video: { url?: string; proxyURL?: string; height?: number; width?: number };
|
||||
public addBlankField(inline?: boolean): this;
|
||||
public addField(name: StringResolvable, value: StringResolvable, inline?: boolean): this;
|
||||
public attachFiles(file: (MessageAttachment | FileOptions | string)[]): this;
|
||||
|
||||
Reference in New Issue
Block a user