2021-08-22 20:38:22 +02:00
|
|
|
import { IUserState } from '@/store/modules/user/types'
|
2021-10-30 12:01:55 +02:00
|
|
|
import { IUserProfile } from '@/types/user'
|
2021-08-11 18:33:02 +02:00
|
|
|
|
|
|
|
export const userState: IUserState = {
|
|
|
|
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
|
|
|
}
|