Terarea  2
The automation project
Loading...
Searching...
No Matches
index.ts
Go to the documentation of this file.
1import { createStore } from 'vuex';
2import appletsModule, { AppletsState } from './applets';
3
4export interface AppState {
5 applets: AppletsState;
6}
7
8export default createStore<AppState>({
9 modules: {
10 applets: appletsModule,
11 },
12});