kar-cw/src/model/environment.ts

15 lines
320 B
TypeScript

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,
};