UNPKG

shadow-core

Version:

A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.

8 lines (7 loc) 212 B
export interface RequestOptions { method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH"; headers?: Record<string, string>; body?: any; queryParams?: Record<string, string>; timeout?: number; }