wms-antdvue/.svn/pristine/7f/7f00cc1d9e0df64c7af304adc37c681263051435.svn-base
2024-11-07 16:33:03 +08:00

13 lines
394 B
Plaintext

import { IAsyncRouteState } from '@/store/modules/asyncRoute';
import { IUserState } from '@/store/modules/user';
import { ILockscreenState } from '@/store/modules/lockscreen';
import { ITabsViewState } from '@/store/modules/tabsView';
export interface IStore {
asyncRoute: IAsyncRouteState;
user: IUserState;
lockscreen: ILockscreenState;
tabsView: ITabsViewState;
count: number;
}