angular2-resource-interceptor
Version:
angular2-resource-and-ajax-interceptor is angular2 http service helper.
16 lines (14 loc) • 451 B
text/typescript
import {Injectable} from '@angular/core';
()
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;
}
}