UNPKG

bucket-duck

Version:

A redux module containing a reducer and actions for a bucket widget.

5 lines (4 loc) 203 B
import { Action } from './actions'; import { State } from './types'; export declare const INITIAL_STATE: State<any>; export default function reducer<T>(state: State<T>, action: Action<T>): State<T>;