9 lines
232 B
TypeScript
Raw Normal View History

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
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
}