export interface Environment { production: boolean, // URL of development API applName: string, defaultServer: string, server: { [key: string]: string; }, ssoSite: string, ssoSignIn: string, ssoSignUp: string, ssoSignOut: string, tokenStoredInPermanentStorage: boolean, replaceDataToRealServer?: boolean, };