UNPKG

163 BTypeScriptView Raw
1import { Action } from '../interfaces';
2export declare type State = number;
3export declare function reduce(state: number | undefined, action: Action<any>): State;