react-application-core
Version:
A react-based application core for the business applications.
7 lines (6 loc) • 327 B
TypeScript
import { IEffectsAction } from 'redux-effects-promise';
import { IApplicationTransportErrorInterceptor } from './transport.interface';
export declare class TransportErrorInterceptor implements IApplicationTransportErrorInterceptor {
private settings;
intercept(payload: any): IEffectsAction[] | IEffectsAction;
}