// This interface is to handle the app config from the js module (i.e. from terraform), as opposed to the config // that is generated on the landing page by the public API. The aim is to migrate to this approach. export interface ApplicationConfig { API_URL: string; MIXPANEL_TOKEN: string; BOOST_URL: string; BOOST_CSA_URL: string; MENTION_ME_URL: string; FLAGS: { [key: string]: boolean }; }