UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

13 lines (12 loc) 279 B
import { WEBHOOKTYPE } from ".."; import { IUser } from "./UserOptions"; export interface IWebhook { id: string; type: WEBHOOKTYPE; guild_id?: string; channel_id: string; user?: IUser; name: string | null; avatar: string | null; token?: string; }