seyfert
Version:
The most advanced framework for discord bots
17 lines (16 loc) • 351 B
TypeScript
export interface RequestHeaders {
Authorization?: string;
'User-Agent': string;
'X-Audit-Log-Reason'?: string;
'Content-Type'?: string;
}
/**
* Possible API methods to be used when doing requests
*/
export declare enum RequestMethod {
Delete = "DELETE",
Get = "GET",
Patch = "PATCH",
Post = "POST",
Put = "PUT"
}