UNPKG
@vincentt-sdks/campaign-sdk
Version:
latest (0.8.2)
0.8.2
0.8.1
0.8.0
0.7.1
0.7.0
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
Campaign SDK by Vincentt
@vincentt-sdks/campaign-sdk
/
dist
/
types
/
service.d.ts
13 lines
(12 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Auth
}
from
'.'
;
interface
FetchOptions
extends
RequestInit
{
headers
:
Record
<
string
,
string
>; }
export
type
CustomFetchParams
= {
url
:
string
;
options
:
FetchOptions
;
auth
:
Auth
;
apiKey
:
string
;
body
?:
Record
<
string
,
any
>; };
export
{};