UNPKG
setu.js
Version:
latest (1.4.5)
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
A lightweight HTTP client for Node.js and the browser, with smart adapter selection.
setu.js
/
dist
/
nodeAdapter.d.ts
3 lines
(2 loc)
•
181 B
TypeScript
View Raw
1
2
3
import
{
HttpRequestConfig
,
HttpResponse
}
from
'./coreRequest.js'
;
export
declare
function
coreRequest<T =
any
>(
url
:
string
,
config
?:
HttpRequestConfig
):
Promise
<
HttpResponse
<T>>;