UNPKG

@liquidcommerceteam/elements-sdk

Version:

LiquidCommerce Elements SDK

14 lines (13 loc) 436 B
export type DeviceType = 'desktop' | 'tablet' | 'mobile'; export interface IElementsConfigurations { stagingUrl: string; productionUrl: string; googleTagManagerId: string; enablePartnerGaTracking: boolean; liquidCommerceGoogleTagManagerId: string; enableLiquidCommerceGaTracking: boolean; builderBackgroundColor: string; partnerName: string; deviceType: DeviceType; isElementsEnabled: boolean; }