UNPKG
zalo-api
Version:
latest (0.3.0)
0.3.0
0.2.1
0.2.0
0.1.1
0.0.1
A wrapper library to help integrate with Zalo API.
github.com/kyled7/zalo-api
kyled7/zalo-api
zalo-api
/
dist
/
HttpRequest.d.ts
9 lines
(8 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
interface
RequestOptions
{
params
?:
any
;
data
?:
any
;
headers
?:
any
; }
export
declare
const
get
:
(
url
:
string
,
options
?:
RequestOptions
|
undefined
) =>
Promise
<
any
>;
export
declare
const
post
:
(
url
:
string
,
options
?:
RequestOptions
|
undefined
) =>
Promise
<
any
>;
export
{};