UNPKG
@zencemarketing/web-sdk
Version:
latest (1.0.1)
1.0.1
1.0.0
ZenceMarketing Web SDK for push notifications, popups, and custom event tracking.
@zencemarketing/web-sdk
/
dist
/
api.d.ts
4 lines
(3 loc)
•
204 B
TypeScript
View Raw
1
2
3
4
type
HttpMethod
=
"GET"
|
"POST"
|
"PUT"
|
"DELETE"
;
declare
function
apiRequest<T =
any
>(
endpoint
:
string
,
method
?:
HttpMethod
,
data
?:
Record
<
string
,
any
> |
null
):
Promise
<T>;
export
default
apiRequest;