UNPKG

@thunderstorefront/sdk

Version:

Create Nuxt extendable layer with this GitHub template.

16 lines (13 loc) 287 B
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;