2021-11-03 18:26:47 +01:00

10 lines
210 B
TypeScript

import { USER_STORE } from '@/store/constants'
export interface IUserState {
authToken: string | null
}
export interface IUserGetters {
[USER_STORE.GETTERS.IS_AUTHENTICATED](state: IUserState): boolean
}