public_api.d.ts 223 B

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