UNPKG

angular2-resource-interceptor

Version:

angular2-resource-and-ajax-interceptor is angular2 http service helper.

16 lines (14 loc) 451 B
import {Injectable} from '@angular/core'; @Injectable() export class AjaxInterceptor { public beforeRequest:any; public afterResponseSuccess:any; public afterResponseError:any; constractor(){ } config(beforeRequest, afterResponseSuccess, afterResponseError) { this.beforeRequest = beforeRequest; this.afterResponseSuccess = afterResponseSuccess; this.afterResponseError = afterResponseError; } }