swc/crates/swc_bundler/tests/.cache/deno/51e8466043cdd648154569502989a09f6f52a516.ts
2021-11-09 20:42:49 +09:00

15 lines
408 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/embeds/embed_video.ts
/** https://discord.com/developers/docs/resources/channel#embed-object-embed-video-structure */
export interface EmbedVideo {
/** Source url of video */
url?: string;
/** A proxied url of the video */
proxyUrl?: string;
/** Height of video */
height?: number;
/** Width of video */
width?: number;
}