UNPKG
@thunderstorefront/sdk
Version:
latest (0.3.3)
0.3.3
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
0.0.3
0.0.2
0.0.1
Create Nuxt extendable layer with this GitHub template.
@thunderstorefront/sdk
/
thunder-sdk.config.ts
16 lines
(13 loc)
•
287 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
interface
ThunderSdkConfig
{
apiUrl
?:
string
;
cartToken
:
string
;
authToken
:
string
;
storeToken
:
string
; }
const
config
:
ThunderSdkConfig
= {
apiUrl
:
undefined
,
cartToken
:
'cart_token'
,
authToken
:
'auth_token'
,
storeToken
:
'store_token'
};
export
default
config;