store.ts 88 B

12345
  1. export let store: any;
  2. export function setStore(newStore: any) {
  3. store = newStore;
  4. }