2021-11-03 10:41:53 +01:00
|
|
|
import { IAuthUserState } from '@/store/modules/authUser/types'
|
2021-10-30 12:01:55 +02:00
|
|
|
import { IUserProfile } from '@/types/user'
|
2021-08-11 18:33:02 +02:00
|
|
|
|
2021-11-03 10:41:53 +01:00
|
|
|
export const authUserState: IAuthUserState = {
|
2021-08-11 18:33:02 +02:00
|
|
|
authToken: null,
|
2021-10-30 12:01:55 +02:00
|
|
|
authUserProfile: <IUserProfile>{},
|
2021-10-13 18:45:34 +02:00
|
|
|
loading: false,
|
2021-08-11 18:33:02 +02:00
|
|
|
}
|