UNPKG

@vermaysha/discord-webhook

Version:

Discord Webhook built using TypeScript which supports Browser and Node

9 lines (8 loc) 304 B
import { AxiosInstance } from 'axios'; export declare function delay(second: number): Promise<void>; export declare class Request { private client; private retries; constructor(client: AxiosInstance); send(method: "GET" | "POST" | "PATCH" | undefined, data: unknown): Promise<unknown>; }