9 lines
224 B
TypeScript
Raw Normal View History

import { IUserState } from '@/store/modules/user/types'
2021-08-21 18:36:44 +02:00
import { IAuthUserProfile } from '@/types/user'
2021-08-11 18:33:02 +02:00
export const userState: IUserState = {
authToken: null,
authUserProfile: <IAuthUserProfile>{},
2021-10-13 18:45:34 +02:00
loading: false,
2021-08-11 18:33:02 +02:00
}