UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

7 lines (6 loc) 229 B
import { HttpFailureAction } from '../../common/actions/http'; export interface HttpState { errors: any[]; offline: boolean; } export declare const httpReducer: (state: HttpState, action: HttpFailureAction) => HttpState;