@vermaysha/discord-webhook
Version:
Discord Webhook built using TypeScript which supports Browser and Node
23 lines (22 loc) • 584 B
TypeScript
import { IAuthor } from './IAuthor';
import { IField } from './IField';
import { IFooter } from './IFooter';
import { IImage } from './IImage';
import { IProvider } from './IProvider';
import { IThumbnail } from './IThumbnail';
import { IVideo } from './IVideo';
export interface IEmbed {
title?: string;
type?: 'rich';
url?: string;
description?: string;
timestamp?: string;
color?: number;
footer?: IFooter;
image?: IImage;
thumbnail?: IThumbnail;
video?: IVideo;
provider?: IProvider;
author?: IAuthor;
fields?: Array<IField>;
}