Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/aether/src/constants/Constants.ts>MessageEmbed

A Deno library to interface with the Discord API
Latest
interface MessageEmbed
import { type MessageEmbed } from "https://deno.land/x/aether@v0.0.3/src/constants/Constants.ts";

Properties

optional
title: string
optional
type:
| "rich"
| "image"
| "video"
| "gifv"
| "article"
| "link"
optional
description: string
optional
url: string
optional
timestamp: number
optional
color: number
optional
image: { url?: string; height: number; width: number; }
optional
thumbnail: { url?: string; height: number; width: number; }
optional
video: { url?: string; height?: number; width?: number; }
optional
provider: { name?: string; url?: string; }
optional
author: { name?: string; url?: string; }
optional
fields: { name: string; value: string; inline: boolean; }[]