index.ts 144 B

1234567
  1. import { GlobalState } from './reducer';
  2. export * from './reducer';
  3. export function init(state: GlobalState): GlobalState {
  4. return state;
  5. }