2021-08-21 18:36:44 +02:00
|
|
|
import { IUserState } from '@/store/modules/user/interfaces'
|
|
|
|
import { IAuthUserProfile } from '@/types/user'
|
2021-08-11 18:33:02 +02:00
|
|
|
|
|
|
|
export const userState: IUserState = {
|
|
|
|
authToken: null,
|
2021-08-11 19:39:09 +02:00
|
|
|
authUserProfile: <IAuthUserProfile>{},
|
2021-08-11 18:33:02 +02:00
|
|
|
}
|