UNPKG

discord-inv

Version:

Get more information about a discord invitation link!

12 lines (11 loc) 273 B
import { RESTError } from "discord-api-types/v10"; interface APIError { code: number; message: string; } export declare class InviteFetchError extends Error implements RESTError { code: number; message: string; constructor(data: APIError); } export {};