aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/minimumApp/src/handlers/minimumAppRootHandler.ts
blob: ae7d7c0bd1ff054c2638c87b2aa3be243b35910f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// main state handler

import { combineActionHandler } from '../../../../framework/src/flux/middleware';

import { IApplicationStoreState } from '../../../../framework/src/store/applicationStore';

export interface IMinimumAppStoreState {
}

declare module '../../../../framework/src/store/applicationStore' {
  interface IApplicationStoreState {
    minimum: IMinimumAppStoreState
  }
}

const actionHandlers = {
};

export const minimumAppRootHandler = combineActionHandler<IMinimumAppStoreState>(actionHandlers);
export default minimumAppRootHandler;