All files / src/app app.component.ts

100% Statements 7/7
100% Branches 0/0
100% Functions 2/2
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12 13 141x                 1x 2x 2x 1x  
import { Component, ViewEncapsulation } from '@angular/core';
import { AuthInterceptorService } from './shared/interceptors/auth-interceptor.service';
 
@Component({
  selector: 'app-root',
  encapsulation: ViewEncapsulation.None,
  templateUrl: './app.component.html',
  styleUrls: ['./styles/index.less'],
})
export class AppComponent {
  title = 'app';
  hasHeader = true;
}