Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / http-interceptor / index.ts
1 import { HTTP_INTERCEPTORS } from '@angular/common/http';
2 import { HeadersInterceptor } from './headers-interceptor';
3 import IStateService = angular.ui.IStateService;
4
5 export const httpInterceptorProviders = [
6     { provide: HTTP_INTERCEPTORS, useClass: HeadersInterceptor, multi: true },
7 ];