aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts')
-rw-r--r--sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts b/sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts
index 36688b3a5..128a03286 100644
--- a/sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts
+++ b/sdnr/wt/odlux/apps/apiDemo/src/handlers/apiDemoRootHandler.ts
@@ -18,22 +18,23 @@
import { combineActionHandler } from '../../../../framework/src/flux/middleware';
+// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { IApplicationStoreState } from '../../../../framework/src/store/applicationStore';
import { moduleHandler, IModules } from './modulesHandler';
export interface IApiDemoStoreState {
- modules: IModules
+ modules: IModules;
}
declare module '../../../../framework/src/store/applicationStore' {
interface IApplicationStoreState {
- apiDemo: IApiDemoStoreState
+ apiDemo: IApiDemoStoreState;
}
}
const actionHandlers = {
- modules: moduleHandler
+ modules: moduleHandler,
};
export const apiDemoRootHandler = combineActionHandler<IApiDemoStoreState>(actionHandlers);