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:
Linn Dahlgren
2019-02-24 09:27:57 +01:00
committed by SpaceEEC
parent bc0a761e22
commit 7006f00ae4
2 changed files with 8 additions and 2 deletions

2
typings/index.d.ts vendored
View File

@@ -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;