mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
feat(types/embed): add proxy_url to EmbedVideo interface (#616)
Co-authored-by: ayntee <ayyantee@gmail.com>
This commit is contained in:
@@ -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 */
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user