UNPKG

redux-tiles

Version:

Library to create and easily compose redux pieces together in less verbose manner

13 lines (12 loc) 390 B
import { ISyncTileParams, ITile, ITileParams } from "./types"; export interface ITypes { [key: string]: string; } export interface IReducerAction { payload: { data: any; } | undefined; error: string | Object | undefined | null; } export declare function createTile(params: ITileParams): ITile; export declare function createSyncTile(params: ISyncTileParams): ITile;