mirror of
https://git.coolaj86.com/coolaj86/request.js
synced 2025-04-21 06:40:38 +00:00
25 lines
529 B
TypeScript
25 lines
529 B
TypeScript
export = root__request;
|
|
|
|
declare function root__request(opts: any, ...args: any[]): any;
|
|
|
|
declare namespace root__request {
|
|
const debug: boolean;
|
|
|
|
const del: any;
|
|
|
|
function defaults(_defs: any): any;
|
|
|
|
function get(opts: any, ...args: any[]): any;
|
|
|
|
function head(opts: any, ...args: any[]): any;
|
|
|
|
function options(opts: any, ...args: any[]): any;
|
|
|
|
function patch(opts: any, ...args: any[]): any;
|
|
|
|
function post(opts: any, ...args: any[]): any;
|
|
|
|
function put(opts: any, ...args: any[]): any;
|
|
|
|
}
|