apps/demo/src/environments/environment.interface.ts
Properties |
| apiUrl |
apiUrl:
|
Type : string
|
| production |
production:
|
Type : boolean
|
| server |
server:
|
Type : boolean
|
| type |
type:
|
Type : "prod" | "development"
|
export interface IEnvironment {
server: boolean;
type: 'prod' | 'development';
production: boolean;
apiUrl: string;
}