UNPKG
@voyo/ali-cdn
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
阿里云cdn sdk。 包含:预热、刷新等功能。
github.com/zhantewei2/voyo-ali-cdn
zhantewei2/voyo-ali-cdn
@voyo/ali-cdn
/
types
/
http.d.ts
10 lines
(9 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="node" />
export
interface
HttpParams
{
method
:
string
;
url
:
string
;
query
?:
Record
<
string
,
any
>;
data
?:
Buffer
|
Record
<
string
,
any
> |
string
;
headers
?:
Record
<
string
,
any
>; }
export
declare
const
req
:
(
opts
:
HttpParams
) =>
Promise
<
unknown
>;