import { Retailer } from './Enums'; // This would make more sense to be called AppConfig - but that conflicts with the name of the global var export interface AppConfigType { retailer: Retailer; serviceBaseUrl: string, csa: boolean; isTestEnvironment: boolean; liveChat: { chatId: string, deploymentId: string, salesforceId: string }; }