UNPKG

@vermaysha/discord-webhook

Version:

Discord Webhook built using TypeScript which supports Browser and Node

11 lines (10 loc) 260 B
import { IAttachment } from './IAttachment'; import { IEmbed } from './IEmbed'; export interface IWebhook { username?: string; avatar_url?: string; tts?: boolean; content?: string; file?: IAttachment | string; embeds?: Array<IEmbed>; }