aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/services/storeService.ts
blob: cbb5987deb13762da2bf457d0aa536b18356dcc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { ApplicationStore } from "../store/applicationStore";

let applicationStore: ApplicationStore | null = null;

export const startSoreService = (store: ApplicationStore) => {
  applicationStore = store;
};

export const storeService = { 
  get applicationStore() { return applicationStore; },
 };