types.ts 394 B

12345678910111213
  1. import { IAsyncRouteState } from '@/store/modules/asyncRoute';
  2. import { IUserState } from '@/store/modules/user';
  3. import { ILockscreenState } from '@/store/modules/lockscreen';
  4. import { ITabsViewState } from '@/store/modules/tabsView';
  5. export interface IStore {
  6. asyncRoute: IAsyncRouteState;
  7. user: IUserState;
  8. lockscreen: ILockscreenState;
  9. tabsView: ITabsViewState;
  10. count: number;
  11. }