UNPKG

react-native-offline

Version:

Handy toolbelt to deal with offline mode in React Native applications. Cross-platform, provides a smooth redux integration.

17 lines (16 loc) 866 B
import { Middleware, Dispatch } from 'redux'; import { NetworkState, EnqueuedAction } from '../types'; declare type State = { network: NetworkState; }; declare type ActionType = Array<string> | string; declare type Arguments = { regexActionType: RegExp; actionTypes: ActionType; queueReleaseThrottle: number; shouldDequeueSelector: (state: State) => boolean; }; declare type StoreDispatch = (...args: any[]) => any; export declare const createReleaseQueue: (getState: () => State, next: StoreDispatch, delay: number, shouldDequeueSelector: (state: State) => boolean) => (queue: EnqueuedAction[]) => Promise<void>; declare function createNetworkMiddleware({ regexActionType, actionTypes, queueReleaseThrottle, shouldDequeueSelector, }?: Partial<Arguments>): Middleware<{}, State, Dispatch>; export default createNetworkMiddleware;