feat(types/embed): add proxy_url to EmbedVideo interface (#616)

Co-authored-by: ayntee <ayyantee@gmail.com>
This commit is contained in:
ITOH
2021-03-07 15:51:48 +01:00
committed by GitHub
parent 4af6f363f8
commit 2865f42f72
2 changed files with 4 additions and 0 deletions

View File

@@ -56,6 +56,8 @@ export interface DiscordEmbedThumbnail {
export interface DiscordEmbedVideo {
/** source url of video */
url?: string;
/** a proxied url of the video */
proxy_url?: string;
/** height of video */
height?: number;
/** width of video */

View File

@@ -99,6 +99,8 @@ export interface EmbedThumbnail {
export interface EmbedVideo {
/** The source url of video */
url?: string;
/** a proxied url of the video */
proxy_url?: string;
/** The height of the video */
height?: number;
/** The width of the video */