UNPKG
@khulnasoft.com/dev-tools
Version:
latest (1.10.0)
1.10.0
1.0.0
KhulnaSoft Visual CMS Devtools
khulnasoft.com
@khulnasoft.com/dev-tools
/
types
/
common
/
node-request.d.ts
8 lines
(7 loc)
•
198 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
function
requestJSON<T>(
opts
:
RequestOptions
):
Promise
<T>;
export
interface
RequestOptions
{
url
:
URL
;
headers
?:
Record
<
string
,
string
>;
method
:
string
;
body
?:
any
; }