UNPKG

223 BTypeScriptView Raw
1export interface Action {
2 type: string;
3 payload?: any;
4}
5export declare type ActionReducer<T> = (state: T, action: Action) => T;
6export { MiniState } from './state.class';
7export { MiniStore } from './store.class';