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

15 lines
454 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/embeds/embed_author.ts
/** https://discord.com/developers/docs/resources/channel#embed-object-embed-author-structure */
export interface EmbedAuthor {
/** Name of author */
name?: string;
/** Url of author */
url?: string;
/** Url of author icon (only supports http(s) and attachments) */
iconUrl?: string;
/** A proxied url of author icon */
proxyIconUrl?: string;
}