RackHD/on-web-ui

View on GitHub
src/environments/model.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModuleRef } from '@angular/core';

export interface Environment {
  production: boolean;
  ENV_PROVIDERS: any;
  showDevModule: boolean;
  decorateModuleRef(modRef: NgModuleRef<any>): NgModuleRef<any>;
}